-
Notifications
You must be signed in to change notification settings - Fork 468
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
Assorted doc & mz cli changes for aws/us-west-2 launch #22287
Conversation
src/mz/tests/e2e.rs
Outdated
@@ -617,6 +617,7 @@ mod tests { | |||
status: &'a str, | |||
} | |||
|
|||
// TODO: add aws/us-west-2 once this test is fixed/re-enabled |
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.
Should we add us-west-2
in this PR, since we're not merging this till launch anyway?
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.
We should change this variable and make this assertion work.
The TODO
comment is in an old e2e test that is now deadcode (I have another PR for removing it.)
223fa81
to
ceea165
Compare
Agree would like the |
test/mz-e2e/mzcompose.py
Outdated
@@ -208,7 +208,7 @@ def workflow_default(c: Composition, parser: WorkflowArgumentParser) -> None: | |||
output = c.run("mz", "region", "list", "--format", "json", capture=True) | |||
regions = json.loads(output.stdout) | |||
us_region = regions[0] |
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 line needs a slight modification.
us_region = regions[0] | |
for region in regions: | |
if region["region"] == REGION: | |
us_region = region |
And the two following lines can be removed .
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.
Just realized that one part of the test must change.
ceea165
to
b75d3b5
Compare
@@ -30,6 +30,7 @@ Region | Day of week | Time | |||
--------------|-------------|----------------------------- | |||
aws/eu-west-1 | Wednesday | 2100-2300 [Europe/Dublin] | |||
aws/us-east-1 | Thursday | 0500-0700 [America/New_York] | |||
aws/us-west-2 | Thursday | 0200-0400 [America/Los_Angeles] |
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.
Ah, this should reflect the time of the calendar event, not the local time at which the event occurs. I put up #22566 to adjust.
Motivation
Update docs and the MZ CLI interfaces for the
aws/us-west-2
launch. We likely don't want to merge this until the region setup is finalized and ready to roll out.Part of the work in https://github.com/MaterializeInc/cloud/issues/7598
Tips for reviewer
Checklist
$T ⇔ Proto$T
mapping (possibly in a backwards-incompatible way), then it is tagged with aT-proto
label.