-
Notifications
You must be signed in to change notification settings - Fork 78
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
bug: missing until for retry in gce plugin #288
base: main
Are you sure you want to change the base?
bug: missing until for retry in gce plugin #288
Conversation
You're patching the Linux file. What about its WINRM counterpart ? I guess it may suffer of the same kind of issue ? |
093e116
to
c2e1ce8
Compare
yes (added the same for winrm), but actually I wonder if it's because of this line in the wait_for module code, perhaps some leaky error that can't quite be captured using only ansible language as the python code isn't wrapped in a try except or using a retry. I re-reviewed the error I shared and the failed = false, so my change although making this more robust, I believe still doesn't cover this case. what do you think @apatard ? edit: I think we should be good, i tested locally with this:
|
c2e1ce8
to
8aa5a67
Compare
Missing the until key for the wait_for module in the gce plugin. Apparently, it doesn't work when the
until
is missing.