diff options
author | Nathaniel Case <this.is@nathanielca.se> | 2018-08-28 17:30:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-28 17:30:50 -0400 |
commit | 86f96d0212f367863113b24245d4078a63e5bac6 (patch) | |
tree | d8c6b5bb068f5154076ec9599c9032d84dd1789c /bin | |
parent | 0c3216c5652411549ce32234a18c6ba2329d35ec (diff) | |
download | ansible-86f96d0212f367863113b24245d4078a63e5bac6.tar.gz |
Move plugin option settings. (#44774)
* Move plugin option settings.
* Add default value and clear after use.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ansible-connection | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/ansible-connection b/bin/ansible-connection index 43b3675a21..09656a5541 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()) |