-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DSQL: implement create_cluster() #8425
Conversation
@@ -45,6 +45,7 @@ | |||
("directconnect", re.compile("https?://directconnect\\.(.+)\\.amazonaws\\.com")), | |||
("dms", re.compile("https?://dms\\.(.+)\\.amazonaws\\.com")), | |||
("ds", re.compile("https?://ds\\.(.+)\\.amazonaws\\.com")), | |||
("dsql", re.compile("https?://dsql\\.(.+)\\.api\\.aws")), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DSQL Endpoint is sub domain of api.aws like dsql.us-east-1.api.aws
not amazonaws.com
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting. I wonder whether that's an outlier, or whether they're going to host other (existing?) services there as well.
6a1a610
to
4a77181
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #8425 +/- ##
=======================================
Coverage 94.60% 94.60%
=======================================
Files 1163 1167 +4
Lines 101638 101697 +59
=======================================
+ Hits 96152 96210 +58
- Misses 5486 5487 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks great - thank you @cm-iwata!
This PR is part of #8413
add DSQL
create_cluster()
implementation.