inserts enable cmd hash with auth_pass used (#32107)

eapi transport was not passing the auth_pass to the remote device with
it was provided.  this fix will now insert the correct command hash into
the jsonrpc request.

fixes #30802
This commit is contained in:
Peter Sprygada 2017-10-24 21:59:49 -04:00 committed by GitHub
parent 1dd55acbc2
commit 1af72afdef

View file

@ -296,7 +296,7 @@ class Eapi:
commands = to_list(commands)
if self._enable:
commands.insert(0, 'enable')
commands.insert(0, self._enable)
body = self._request_builder(commands, output)
data = self._module.jsonify(body)