Skip to content

Commit

Permalink
Tests: Increased SSH container timeout to avoid random failures
Browse files Browse the repository at this point in the history
  • Loading branch information
blackandred committed Oct 30, 2019
1 parent ead7ce5 commit cfea539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils/ssh_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def get_current_ssh_server_fingerprint():
def _wait_for_ssh_to_be_ready():
out = ''

for i in range(1, 120):
for i in range(1, 600):
try:
out += str(subprocess.check_output('echo "ttttt\n\n" | nc -w 1 "localhost" "3222"',
shell=True, stderr=subprocess.STDOUT))
Expand Down

0 comments on commit cfea539

Please sign in to comment.