Merge "cloudpulse docker check fails"

This commit is contained in:
Zuul 2020-12-11 13:12:14 +00:00 committed by Gerrit Code Review
commit 82b812ff91
2 changed files with 2 additions and 1 deletions

View File

@ -2,3 +2,4 @@
host=review.opendev.org
port=29418
project=x/cloudpulse.git
defaultbranch=stable/train

View File

@ -280,7 +280,7 @@ class operator_scenario(base.Scenario):
docker_down.append(line[0].strip())
elif 'UNREACHABLE' in line[1]:
ssh_failed.append(line[0].strip())
elif 'SUCCESS' in line[1]:
elif any(status in line[1] for status in ['SUCCESS', 'CHANGED']):
if len(line) < 3:
continue
line[3] = line[3].replace(' ', '')