Fix aysnc failure by forgetting the remote tempdir that async_wrapper will delete on the remote end
This commit is contained in:
parent
d4b31afbc5
commit
5c085b2436
1 changed files with 5 additions and 1 deletions
|
@ -805,8 +805,12 @@ class ActionBase(with_metaclass(ABCMeta, object)):
|
|||
# remove internal keys
|
||||
remove_internal_keys(data)
|
||||
|
||||
# FIXME: for backwards compat, figure out if still makes sense
|
||||
if wrap_async:
|
||||
# async_wrapper will clean up its tempdir on its own so we want the controller side to
|
||||
# forget about it now
|
||||
self._connection._shell.tempdir = None
|
||||
|
||||
# FIXME: for backwards compat, figure out if still makes sense
|
||||
data['changed'] = True
|
||||
|
||||
# pre-split stdout/stderr into lines if needed
|
||||
|
|
Loading…
Reference in a new issue