Skip to content

Commit 459072a

Browse files
authored
Merge pull request #681 from lago-project/deploy_log_error_no_propagation
deploy: Don't propagate fail when waiting for ssh
2 parents 976efa3 + ed3f48c commit 459072a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lago/prefix.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1621,7 +1621,7 @@ def _deploy_host(self, host):
16211621
return
16221622

16231623
with LogTask('Wait for ssh connectivity'):
1624-
if not host.ssh_reachable(tries=1):
1624+
if not host.ssh_reachable(tries=1, propagate_fail=False):
16251625
time.sleep(10)
16261626
host.wait_for_ssh()
16271627

0 commit comments

Comments
 (0)