-
Notifications
You must be signed in to change notification settings - Fork 359
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
Call cache no copy fixups and centaur error improvements #4951
Conversation
# No point retrying failures since they'll just end up colliding with previous results: | ||
retryTestFailures: false | ||
|
||
|
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.
despace
@@ -386,7 +398,6 @@ object Operations { | |||
validateMetadata(workflow, expectedMetadata).handleErrorWith({ _ => | |||
for { | |||
_ <- IO.sleep(2.seconds) | |||
_ = if (LogFailures) Console.err.println(s"Metadata mismatch for ${submittedWorkflow.id} - retrying") |
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 does get printed if it never reaches the expected value?
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.
Correct - the actual message (including which metadata was wrong) gets printed if this "eventuallyMetadata" times out
4d536f0
to
15c3a42
Compare
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.
One small change:
Co-Authored-By: kshakir <github@kshakir.org>
These changes are side effects of my investigation into the
invalidate_bad_caches_jes_no_copy
test on PAPIv1:
invalidate_bad_caches_jes_no_copy
because it will never work the second time (even on v2)Succeeded
to speed up the debug cycle