diff options
author | Peter Mikus <pmikus@cisco.com> | 2018-07-16 12:19:06 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2018-07-19 13:00:54 +0000 |
commit | fb7a7ea16d547b48c69143f612f7b5dea0a0826a (patch) | |
tree | f45d3f3ddc51af3ea159f2bccdd6e9af530e615b | |
parent | 0914e94a0738e94d0e8e87e3f99bfa8e21218a7e (diff) |
FIX: Increase timeout for VAT for longer API calls.
Change-Id: Idab5e8d62a42513ddef97025625962b510c3a625
Signed-off-by: Peter Mikus <pmikus@cisco.com>
-rw-r--r-- | resources/libraries/python/ssh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/ssh.py b/resources/libraries/python/ssh.py index 4bed173bbb..7518cabcc3 100644 --- a/resources/libraries/python/ssh.py +++ b/resources/libraries/python/ssh.py @@ -244,7 +244,7 @@ class SSH(object): command = 'sudo -S {c}'.format(c=command) return self.exec_command(command, timeout) - def interactive_terminal_open(self, time_out=30): + def interactive_terminal_open(self, time_out=45): """Open interactive terminal on a new channel on the connected Node. :param time_out: Timeout in seconds. |