Exclude the whole ansible_failed_task block (#45587)

It has lots of FieldAttributes that won't serialize.
Also the connection doesn't care.
pull/45598/head
Nathaniel Case 6 years ago committed by GitHub
parent d81249994e
commit 3d0f19d8cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -843,7 +843,10 @@ class TaskExecutor:
display.vvvv('attempting to start connection', host=self._play_context.remote_addr)
display.vvvv('using connection plugin %s' % connection.transport, host=self._play_context.remote_addr)
# We don't need to send the entire contents of variables to ansible-connection
filtered_vars = dict((key, value) for key, value in variables.items() if key.startswith('ansible'))
filtered_vars = dict(
(key, value) for key, value in variables.items()
if key.startswith('ansible') and key != 'ansible_failed_task'
)
socket_path = self._start_connection(filtered_vars)
display.vvvv('local domain socket path is %s' % socket_path, host=self._play_context.remote_addr)
setattr(connection, '_socket_path', socket_path)

Loading…
Cancel
Save