mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-06 10:43:14 +00:00
Fix py3 issue in wait_for_connection (#37646)
This commit is contained in:
@@ -54,11 +54,12 @@ class ActionModule(ActionBase):
|
||||
display.debug("wait_for_connection: %s success" % what_desc)
|
||||
return
|
||||
except Exception as e:
|
||||
error = e # PY3 compatibility to store exception for use outside of this block
|
||||
if what_desc:
|
||||
display.debug("wait_for_connection: %s fail (expected), retrying in %d seconds..." % (what_desc, sleep))
|
||||
time.sleep(sleep)
|
||||
|
||||
raise TimedOutException("timed out waiting for %s: %s" % (what_desc, e))
|
||||
raise TimedOutException("timed out waiting for %s: %s" % (what_desc, error))
|
||||
|
||||
def run(self, tmp=None, task_vars=None):
|
||||
if task_vars is None:
|
||||
|
||||
Reference in New Issue
Block a user