Skip to content

Commit

Permalink
Merge pull request #681 from lago-project/deploy_log_error_no_propaga…
Browse files Browse the repository at this point in the history
…tion

deploy: Don't propagate fail when waiting for ssh
  • Loading branch information
ovirt-infra authored Dec 6, 2017
2 parents 976efa3 + ed3f48c commit 459072a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lago/prefix.py
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@ def _deploy_host(self, host):
return

with LogTask('Wait for ssh connectivity'):
if not host.ssh_reachable(tries=1):
if not host.ssh_reachable(tries=1, propagate_fail=False):
time.sleep(10)
host.wait_for_ssh()

Expand Down

0 comments on commit 459072a

Please sign in to comment.