Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorNathaniel Case <this.is@nathanielca.se>2018-08-29 00:30:50 +0300
committerGitHub <noreply@github.com>2018-08-29 00:30:50 +0300
commit86f96d0212f367863113b24245d4078a63e5bac6 (patch)
treed8c6b5bb068f5154076ec9599c9032d84dd1789c /bin
parent0c3216c5652411549ce32234a18c6ba2329d35ec (diff)
Move plugin option settings. (#44774)
* Move plugin option settings. * Add default value and clear after use.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ansible-connection4
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/ansible-connection b/bin/ansible-connection
index 43b3675a217..09656a55415 100755
--- a/bin/ansible-connection
+++ b/bin/ansible-connection
@@ -105,10 +105,6 @@ class ConnectionProcess(object):
self.connection.set_options(var_options=variables)
self.connection._connect()
- # implementation plugins are updated while connection initialization
- if hasattr(self.connection, 'set_implementation_plugin_options'):
- self.connection.set_implementation_plugin_options(var_options=variables)
-
self.connection._socket_path = self.socket_path
self.srv.register(self.connection)
messages.extend(sys.stdout.getvalue().splitlines())