Commit 46984a06 by James Cammarata

Don't wrap vars from include_vars with UnsafeProxy

parent 4c7843f2
...@@ -268,7 +268,7 @@ class StrategyBase: ...@@ -268,7 +268,7 @@ class StrategyBase:
if result[0] == 'set_host_var': if result[0] == 'set_host_var':
var_name = result[4] var_name = result[4]
var_value = wrap_var(result[5]) var_value = result[5]
self._variable_manager.set_host_variable(target_host, var_name, var_value) self._variable_manager.set_host_variable(target_host, var_name, var_value)
elif result[0] == 'set_host_facts': elif result[0] == 'set_host_facts':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment