summaryrefslogtreecommitdiff
path: root/lib/ansible/executor
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2020-10-23 15:29:16 -0500
committerGitHub <noreply@github.com>2020-10-23 15:29:16 -0500
commit132346cb6a6f59cc5cca2f8519038eede793efb9 (patch)
treef43ef6e9f80f0325de3af9d2219e0ea9ab60ccd2 /lib/ansible/executor
parentae1ee31b992b16a0ffa42e38a91a9bf619576bd7 (diff)
downloadansible-132346cb6a6f59cc5cca2f8519038eede793efb9.tar.gz
[stable-2.10] Ensure we call action_loader.get with collection_list (#72206) (#72252)
(cherry picked from commit be5fc4e)
Diffstat (limited to 'lib/ansible/executor')
-rw-r--r--lib/ansible/executor/task_executor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/executor/task_executor.py b/lib/ansible/executor/task_executor.py
index c4bc7886ff..0449b41902 100644
--- a/lib/ansible/executor/task_executor.py
+++ b/lib/ansible/executor/task_executor.py
@@ -828,7 +828,7 @@ class TaskExecutor:
# we need the 'normal' action handler for the status check, so get it
# now via the action_loader
async_handler = self._shared_loader_obj.action_loader.get(
- 'async_status',
+ 'ansible.legacy.async_status',
task=async_task,
connection=self._connection,
play_context=self._play_context,