diff options
author | Tibor Frank <tifrank@cisco.com> | 2017-03-13 13:22:08 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2017-04-18 11:24:44 +0200 |
commit | 28bab4e715a123199972bdc5f79f6a508a879fd6 (patch) | |
tree | 0b6c3a3aa71eb80143eae2c62086a61e153818c6 /resources/libraries/python/ssh.py | |
parent | 4da982b7a0f5872de2cc721607894216a20892f4 (diff) |
CSIT-545: Performance tests for SNAT
- High level definition (HLD)
- Low level definition (LLD)
- Add keywords to set SNAT
- Add tests according to HLD, LLD
Change-Id: I7bf0b1870ac9c3adb36bb6590be9a3eb4ea8aa9a
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/libraries/python/ssh.py')
-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 7b15998be0..961f7e2ee8 100644 --- a/resources/libraries/python/ssh.py +++ b/resources/libraries/python/ssh.py @@ -285,7 +285,7 @@ class SSH(object): logger.trace('SCP {0} to {1}:{2}'.format( local_path, self._ssh.get_transport().getpeername(), remote_path)) # SCPCLient takes a paramiko transport as its only argument - scp = SCPClient(self._ssh.get_transport()) + scp = SCPClient(self._ssh.get_transport(), socket_timeout=10) start = time() scp.put(local_path, remote_path) scp.close() |