mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 20:01:25 -07:00
E501 fixes (#22879)
This commit is contained in:
parent
4fdeade389
commit
3164e8b561
215 changed files with 1328 additions and 761 deletions
|
@ -196,10 +196,12 @@ class TaskExecutor:
|
|||
if self._task.loop in self._shared_loader_obj.lookup_loader:
|
||||
if self._task.loop == 'first_found':
|
||||
# first_found loops are special. If the item is undefined then we want to fall through to the next value rather than failing.
|
||||
loop_terms = listify_lookup_plugin_terms(terms=self._task.loop_args, templar=templar, loader=self._loader, fail_on_undefined=False, convert_bare=False)
|
||||
loop_terms = listify_lookup_plugin_terms(terms=self._task.loop_args, templar=templar, loader=self._loader, fail_on_undefined=False,
|
||||
convert_bare=False)
|
||||
loop_terms = [t for t in loop_terms if not templar._contains_vars(t)]
|
||||
else:
|
||||
loop_terms = listify_lookup_plugin_terms(terms=self._task.loop_args, templar=templar, loader=self._loader, fail_on_undefined=True, convert_bare=False)
|
||||
loop_terms = listify_lookup_plugin_terms(terms=self._task.loop_args, templar=templar, loader=self._loader, fail_on_undefined=True,
|
||||
convert_bare=False)
|
||||
|
||||
# get lookup
|
||||
mylookup = self._shared_loader_obj.lookup_loader.get(self._task.loop, loader=self._loader, templar=templar)
|
||||
|
@ -468,7 +470,9 @@ class TaskExecutor:
|
|||
self._task.args = variable_params
|
||||
|
||||
# get the connection and the handler for this execution
|
||||
if not self._connection or not getattr(self._connection, 'connected', False) or self._play_context.remote_addr != self._connection._play_context.remote_addr:
|
||||
if (not self._connection or
|
||||
not getattr(self._connection, 'connected', False) or
|
||||
self._play_context.remote_addr != self._connection._play_context.remote_addr):
|
||||
self._connection = self._get_connection(variables=variables, templar=templar)
|
||||
hostvars = variables.get('hostvars', None)
|
||||
if hostvars:
|
||||
|
@ -666,11 +670,14 @@ class TaskExecutor:
|
|||
# have issues which result in a half-written/unparseable result
|
||||
# file on disk, which manifests to the user as a timeout happening
|
||||
# before it's time to timeout.
|
||||
if int(async_result.get('finished', 0)) == 1 or ('failed' in async_result and async_result.get('_ansible_parsed', False)) or 'skipped' in async_result:
|
||||
if (int(async_result.get('finished', 0)) == 1 or
|
||||
('failed' in async_result and async_result.get('_ansible_parsed', False)) or
|
||||
'skipped' in async_result):
|
||||
break
|
||||
except Exception as e:
|
||||
# Connections can raise exceptions during polling (eg, network bounce, reboot); these should be non-fatal.
|
||||
# On an exception, call the connection's reset method if it has one (eg, drop/recreate WinRM connection; some reused connections are in a broken state)
|
||||
# On an exception, call the connection's reset method if it has one
|
||||
# (eg, drop/recreate WinRM connection; some reused connections are in a broken state)
|
||||
display.vvvv("Exception during async poll, retrying... (%s)" % to_text(e))
|
||||
display.debug("Async poll exception was:\n%s" % to_text(traceback.format_exc()))
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue