Ironware module_utils cliconf plugin minor change (#32920)

As per refactor in connection framework PR 32521
pass socket_path to Connection class while initiating
cliconf connection
pull/29100/head
Ganesh Nalawade 7 years ago committed by GitHub
parent 52c87c4691
commit 7170c26399
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -61,7 +61,7 @@ def get_connection(module):
global _CONNECTION
if _CONNECTION:
return _CONNECTION
_CONNECTION = Connection(module)
_CONNECTION = Connection(module._socket_path)
return _CONNECTION

Loading…
Cancel
Save