Skip to content

Commit bd9ef24

Browse files
remove traces
Signed-off-by: rohitthakur2590 <[email protected]>
1 parent 4348f9f commit bd9ef24

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

plugins/connection/persistent.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,17 @@ def run(self):
7272
"starting connection from persistent connection plugin",
7373
host=self._play_context.remote_addr,
7474
)
75-
variables = {"ansible_command_timeout": self.get_option("persistent_command_timeout")}
75+
variables = {
76+
"ansible_command_timeout": self.get_option(
77+
"persistent_command_timeout"
78+
),
79+
"remote_addr": self.get_option("remote_addr"),
80+
"remote_user": self.get_option("remote_user"),
81+
"password": self.get_option("password"),
82+
"port": self.get_option("port"),
83+
"private_key_file": self.get_option("private_key_file")
84+
}
85+
self._play_context.connection
7686
socket_path = start_connection(self._play_context, variables, self._task_uuid)
7787
display.vvvv(
7888
"local domain socket path is %s" % socket_path,

0 commit comments

Comments
 (0)