diff options
author | Luc Provoost <luc.provoost@intel.com> | 2021-08-20 11:33:55 +0200 |
---|---|---|
committer | Luc Provoost <luc.provoost@intel.com> | 2021-08-20 11:33:55 +0200 |
commit | 3fa810ce5efea1fc3b1902dabc6ddf39c9070814 (patch) | |
tree | 1a4063b4e639ef451383fab0b1b8e10d7a1d0596 /VNFs/DPPD-PROX/helper-scripts | |
parent | 8a12bf3b9202cfb02102c9f179dc2cc15be79a63 (diff) |
Fix ssh timeout issue
Moving to paramiko for ssh introduced a bug: when starting PROX through
ssh, a default timeout of 15 seconds was started. The timer is now
disable since we need to run PROX as long as the test will take.
Change-Id: I65162fff33beb6d30d2f5ee2b83f9bef7880ce4b
Signed-off-by: Luc Provoost <luc.provoost@intel.com>
Diffstat (limited to 'VNFs/DPPD-PROX/helper-scripts')
-rw-r--r-- | VNFs/DPPD-PROX/helper-scripts/rapid/prox_ctrl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/VNFs/DPPD-PROX/helper-scripts/rapid/prox_ctrl.py b/VNFs/DPPD-PROX/helper-scripts/rapid/prox_ctrl.py index 2df78cbe..fc6749da 100644 --- a/VNFs/DPPD-PROX/helper-scripts/rapid/prox_ctrl.py +++ b/VNFs/DPPD-PROX/helper-scripts/rapid/prox_ctrl.py @@ -36,7 +36,7 @@ class prox_ctrl(object): self._password = password self._proxsock = [] self._sshclient = SSHClient(ip = ip, user = user, password = password, - rsa_private_key = key) + rsa_private_key = key, timeout = None) def ip(self): return self._ip |