Merge "Failure status should be set on 0 rather than 1" into stable/train

This commit is contained in:
Zuul 2020-11-02 19:08:52 +00:00 committed by Gerrit Code Review
commit 1309c809a1
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ def process_healthcheck_output(logfile):
ret_code, output = 0, []
for _, opt in data.items():
if opt['healthy'] > 0 and ret_code != 2:
if opt['healthy'] < 1 and ret_code != 2:
ret_code = 2
output.append(opt)
return ret_code, output