mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-15 05:29:11 -07:00
Fix bug in async action plugin
This commit is contained in:
parent
b41b08ba7d
commit
98fee172ee
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class ActionModule(ActionBase):
|
||||||
async_jid = str(random.randint(0, 999999999999))
|
async_jid = str(random.randint(0, 999999999999))
|
||||||
|
|
||||||
async_cmd = " ".join([str(x) for x in [async_module_path, async_jid, async_limit, remote_module_path, argsfile]])
|
async_cmd = " ".join([str(x) for x in [async_module_path, async_jid, async_limit, remote_module_path, argsfile]])
|
||||||
result = self._low_level_execute_command(cmd=async_cmd, task_vars=task_vars, tmp=None)
|
result = self._low_level_execute_command(cmd=async_cmd, tmp=None)
|
||||||
|
|
||||||
# clean up after
|
# clean up after
|
||||||
if tmp and "tmp" in tmp and not C.DEFAULT_KEEP_REMOTE_FILES:
|
if tmp and "tmp" in tmp and not C.DEFAULT_KEEP_REMOTE_FILES:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue