diff options
author | Matt Martz <matt@sivel.net> | 2022-01-21 13:20:12 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 13:20:12 -0600 |
commit | 30aeba87c319f82a8342db1ca8582a644e7684b8 (patch) | |
tree | 2bc6ad08df1a2607cf76378e8370739e209282e2 /changelogs | |
parent | fdb93a912b527633d32516bf2971572b930b83ea (diff) | |
download | ansible-30aeba87c319f82a8342db1ca8582a644e7684b8.tar.gz |
[stable-2.12] Resolve perf issue with async callback events (#76783) (#76816)
* Don't send full task with async callback events. Fixes #76729
* Use args for async_status task, instead of k=v
* Make sure we send back the async task attrs for polling
* Add clog frag
* load is a staticmethod
(cherry picked from commit 96ce480)
Co-authored-by: Matt Martz <matt@sivel.net>
Diffstat (limited to 'changelogs')
-rw-r--r-- | changelogs/fragments/76729-async-callback-perf.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changelogs/fragments/76729-async-callback-perf.yml b/changelogs/fragments/76729-async-callback-perf.yml new file mode 100644 index 0000000000..64d9299554 --- /dev/null +++ b/changelogs/fragments/76729-async-callback-perf.yml @@ -0,0 +1,3 @@ +bugfixes: +- async - Improve performance of sending async callback events by never sending the full task through the queue + (https://github.com/ansible/ansible/issues/76729) |