diff options
author | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2019-01-03 23:33:12 -0500 |
---|---|---|
committer | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2019-01-03 23:33:12 -0500 |
commit | 4ba270ae658ab890a3cd2c6b6edd4e73c639e8ad (patch) | |
tree | 8c6a022dbb39eb00df2de68d7d069c97ff7139db /pytests/powertest.py | |
parent | e9e710e6050d9025250f2ba7cb4a2ffcd711b1e1 (diff) | |
download | mongo-4ba270ae658ab890a3cd2c6b6edd4e73c639e8ad.tar.gz |
SERVER-37490 Increase ssh ConnectTimeout from 10 to 30 seconds.
(cherry picked from commit 63af6676e353eafa00b6178737085606836e6139)
Diffstat (limited to 'pytests/powertest.py')
-rwxr-xr-x | pytests/powertest.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pytests/powertest.py b/pytests/powertest.py index 2a3f664232b..543d67c6fce 100755 --- a/pytests/powertest.py +++ b/pytests/powertest.py @@ -1785,7 +1785,7 @@ Examples: default_ssh_connection_options = ("-o ServerAliveCountMax=10" " -o ServerAliveInterval=6" " -o StrictHostKeyChecking=no" - " -o ConnectTimeout=10" + " -o ConnectTimeout=30" " -o ConnectionAttempts=20") test_options.add_option("--sshConnection", dest="ssh_connection_options", help="Server ssh additional connection options, i.e., '-i ident.pem'" @@ -2375,9 +2375,12 @@ Examples: ssh_user, ssh_host = get_user_host(ssh_user_host) mongod_host = ssh_host - ssh_connection_options = "{} {}".format( - default_ssh_connection_options, - options.ssh_connection_options if options.ssh_connection_options else "") + # As described in http://man7.org/linux/man-pages/man5/ssh_config.5.html, ssh uses the value of + # the first occurrence for each parameter, so we have the default connection options follow the + # user-specified --sshConnection options. + ssh_connection_options = "{} {}".format(options.ssh_connection_options + if options.ssh_connection_options else "", + default_ssh_connection_options) # For remote operations requiring sudo, force pseudo-tty allocation, # see https://stackoverflow.com/questions/10310299/proper-way-to-sudo-over-ssh. # Note - the ssh option RequestTTY was added in OpenSSH 5.9, so we use '-tt'. |