From: Peter Mikus Date: Mon, 16 Jul 2018 12:19:06 +0000 (+0000) Subject: FIX: Increase timeout for VAT for longer API calls. X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=fb7a7ea16d547b48c69143f612f7b5dea0a0826a FIX: Increase timeout for VAT for longer API calls. Change-Id: Idab5e8d62a42513ddef97025625962b510c3a625 Signed-off-by: Peter Mikus --- 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.