diff options
-rw-r--r-- | changelogs/fragments/local_auth_timeout.yaml | 3 | ||||
-rw-r--r-- | plugins/action/vyos.py | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/changelogs/fragments/local_auth_timeout.yaml b/changelogs/fragments/local_auth_timeout.yaml new file mode 100644 index 0000000..85c82d9 --- /dev/null +++ b/changelogs/fragments/local_auth_timeout.yaml @@ -0,0 +1,3 @@ +--- +bugfixes: + - Update network integration auth timeout for connection local. diff --git a/plugins/action/vyos.py b/plugins/action/vyos.py index 9519d36..61f377b 100644 --- a/plugins/action/vyos.py +++ b/plugins/action/vyos.py @@ -99,6 +99,7 @@ class ActionModule(ActionNetworkModule): direct={"persistent_command_timeout": command_timeout} ) + pc.timeout = command_timeout socket_path = connection.run() display.vvvv("socket_path: %s" % socket_path, pc.remote_addr) if not socket_path: |