From 78d4f6bbc18c80122e221266c8636f66072ed4c3 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Wed, 21 Dec 2016 22:16:25 -0600 Subject: [PATCH] Removing print debug statements --- lib/ansible/plugins/strategy/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/ansible/plugins/strategy/__init__.py b/lib/ansible/plugins/strategy/__init__.py index 39cd2405ad..1d0340d9a1 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