summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cammarata <jimi@sngx.net>2016-12-21 22:16:25 -0600
committerJames Cammarata <jimi@sngx.net>2016-12-22 19:14:53 -0600
commit3c7987f3a4f467bef9ee05c6d58e463cbc95abae (patch)
tree2f8e35e4d285c86e2a996ce8c6e688e715e67dc3
parent3e72e0c173144df5c4986b00c60e0c307da2fb3b (diff)
downloadansible-3c7987f3a4f467bef9ee05c6d58e463cbc95abae.tar.gz
Removing print debug statements
(cherry picked from commit 78d4f6bbc18c80122e221266c8636f66072ed4c3)
-rw-r--r--lib/ansible/plugins/strategy/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/ansible/plugins/strategy/__init__.py b/lib/ansible/plugins/strategy/__init__.py
index 1d4fee5f3c..92189d3b42 100644
--- a/lib/ansible/plugins/strategy/__init__.py
+++ b/lib/ansible/plugins/strategy/__init__.py
@@ -421,14 +421,12 @@ class StrategyBase:
for result_item in result_items:
if '_ansible_notify' in result_item:
- print("GOT A NOTIFY")
if task_result.is_changed():
# The shared dictionary for notified handlers is a proxy, which
# does not detect when sub-objects within the proxy are modified.
# So, per the docs, we reassign the list so the proxy picks up and
# notifies all other threads
for handler_name in result_item['_ansible_notify']:
- print("TRYING TO SEND NOTIFICATION TO HANDLER: %s" % handler_name)
found = False
# Find the handler using the above helper. First we look up the
# dependency chain of the current task (if it's from a role), otherwise