-
Notifications
You must be signed in to change notification settings - Fork 60
Increase VolumeSnapshot wait timeout from 240s to 6 minutes #3972
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1031,7 +1031,7 @@ def wait_for_volume_snapshot_ready_to_use(namespace, name): | |
| ready_to_use_status = "readyToUse" | ||
| LOGGER.info(f"Wait for VolumeSnapshot '{name}' in '{namespace}' to be '{ready_to_use_status}'") | ||
| volume_snapshot = VolumeSnapshot(namespace=namespace, name=name) | ||
| volume_snapshot.wait() | ||
| volume_snapshot.wait(timeout=TIMEOUT_6MIN) | ||
Ahmad-Hafe marked this conversation as resolved.
Show resolved
Hide resolved
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. increasing the timeout by 2 minutes on a test which failed a month ago and the failure could not be reproduced is odd to me @jpeimer @dalia-frank wdyt?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @rnetser I agree I added 2 min just because in the must-gather I saw the the PVC took it around 5 min to provisin, so I considered that and raised the time up to 6 min in total (+1 plus to volumesnapshot) @jpeimer @dalia-frank |
||
| try: | ||
| for sample in TimeoutSampler( | ||
| wait_timeout=TIMEOUT_5MIN, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.