summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <bcoca@ansible.com>2015-07-28 12:36:24 -0400
committerBrian Coca <bcoca@ansible.com>2015-07-28 12:36:24 -0400
commitf893d2e0e6d4329010203c36e9d8709af665d99c (patch)
tree7fc6936cd9575a1c087340799463c405d3f5e5e6
parent1026e06e31dc10f3d9a42570ea4499a4ef95f72a (diff)
parent66b92df56879c896b455d48ec474f09ee19a42ac (diff)
downloadansible-f893d2e0e6d4329010203c36e9d8709af665d99c.tar.gz
Merge pull request #11522 from DazWorrall/patch-2
Add complex_args to logging callback data
-rw-r--r--lib/ansible/runner/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ansible/runner/__init__.py b/lib/ansible/runner/__init__.py
index b79a8f72cd..64e922aacf 100644
--- a/lib/ansible/runner/__init__.py
+++ b/lib/ansible/runner/__init__.py
@@ -1081,7 +1081,8 @@ class Runner(object):
result.result['invocation'] = dict(
module_args=module_args,
- module_name=module_name
+ module_name=module_name,
+ module_complex_args=complex_args,
)
changed_when = self.module_vars.get('changed_when')