From b6c92dacb5805d6668e3aba1b5aea48d472a5996 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 30 Oct 2015 14:03:37 -0400 Subject: [PATCH] removed key striping as they are read up the chain --- lib/ansible/executor/process/result.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/ansible/executor/process/result.py b/lib/ansible/executor/process/result.py index dc4dabab2a9..9e1f6921f48 100644 --- a/lib/ansible/executor/process/result.py +++ b/lib/ansible/executor/process/result.py @@ -21,7 +21,6 @@ __metaclass__ = type from ansible.compat.six.moves import queue from ansible.compat.six import iteritems, text_type -from ansible.vars import strip_internal_keys import multiprocessing import time @@ -106,7 +105,7 @@ class ResultProcess(multiprocessing.Process): # if this task is registering a result, do it now if result._task.register: - self._send_result(('register_host_var', result._host, result._task.register, strip_internal_keys(result._result))) + self._send_result(('register_host_var', result._host, result._task.register, result._result)) # send callbacks, execute other options based on the result status # TODO: this should all be cleaned up and probably moved to a sub-function.