From 478c6c756a8caae4c8e1dacbff9104056b1e1738 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Sun, 22 Nov 2015 14:44:08 -0800 Subject: [PATCH] marked spot that should send per item reulsts --- lib/ansible/executor/task_executor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/executor/task_executor.py b/lib/ansible/executor/task_executor.py index 27e11bed79..0e1ebb600c 100644 --- a/lib/ansible/executor/task_executor.py +++ b/lib/ansible/executor/task_executor.py @@ -244,6 +244,7 @@ class TaskExecutor: # now update the result with the item info, and append the result # to the list of results res['item'] = item + #TODO: send item results to callback here, instead of all at the end results.append(res) return results