mirror of https://github.com/apache/cloudstack.git
Increasing the timeout values to 600 seconds from 300 seconds
Timeout for ssh related test cases is increased based upon few test run observations where ssh is taking more time during restart scenarios as an example. We have done few changes to streamline ssh library. This is in addition to those to keep less ssh script issues Signed-off-by: Santhosh Edukulla <Santhosh.Edukulla@citrix.com> Signed-off-by: SrikanteswaraRao Talluri <talluri@apache.org>
This commit is contained in:
parent
cf7532e848
commit
9495fbc873
|
|
@ -113,7 +113,7 @@ def cleanup_resources(api_client, resources):
|
|||
obj.delete(api_client)
|
||||
|
||||
|
||||
def is_server_ssh_ready(ipaddress, port, username, password, retries=10, retryinterv=30, timeout=3.0, keyPairFileLocation=None):
|
||||
def is_server_ssh_ready(ipaddress, port, username, password, retries=20, retryinterv=30, timeout=10.0, keyPairFileLocation=None):
|
||||
'''
|
||||
@Name: is_server_ssh_ready
|
||||
@Input: timeout: tcp connection timeout flag,
|
||||
|
|
|
|||
|
|
@ -30,8 +30,8 @@ class remoteSSHClient(object):
|
|||
'''
|
||||
Added timeout flag for ssh connect calls.Default to 3.0 seconds
|
||||
'''
|
||||
def __init__(self, host, port, user, passwd, retries=10, delay=30,
|
||||
log_lvl=logging.INFO, keyPairFiles=None, timeout=3.0):
|
||||
def __init__(self, host, port, user, passwd, retries=20, delay=30,
|
||||
log_lvl=logging.INFO, keyPairFiles=None, timeout=10.0):
|
||||
self.host = None
|
||||
self.port = 22
|
||||
self.user = user
|
||||
|
|
|
|||
Loading…
Reference in New Issue