summaryrefslogtreecommitdiffstats
path: root/roles/openshift_health_checker/action_plugins/openshift_health_check.py
diff options
context:
space:
mode:
authorOpenShift Bot <eparis+openshiftbot@redhat.com>2017-03-23 14:22:35 -0500
committerGitHub <noreply@github.com>2017-03-23 14:22:35 -0500
commit8751f883b28e9f04b31038e16efad9036527f890 (patch)
tree025ad2133d9cbf2e678ea0ac863ce2da9d207843 /roles/openshift_health_checker/action_plugins/openshift_health_check.py
parentadbf60c2d5a63d33e2a6d52d043124ad0058a0e1 (diff)
parenta35bd91e8f4a3a08dfdd9bb2a68d4023cb389408 (diff)
downloadopenshift-8751f883b28e9f04b31038e16efad9036527f890.tar.gz
openshift-8751f883b28e9f04b31038e16efad9036527f890.tar.bz2
openshift-8751f883b28e9f04b31038e16efad9036527f890.tar.xz
openshift-8751f883b28e9f04b31038e16efad9036527f890.zip
Merge pull request #3461 from juanvallejo/jvallejo/add-docker-image-check
Merged by openshift-bot
Diffstat (limited to 'roles/openshift_health_checker/action_plugins/openshift_health_check.py')
-rw-r--r--roles/openshift_health_checker/action_plugins/openshift_health_check.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/roles/openshift_health_checker/action_plugins/openshift_health_check.py b/roles/openshift_health_checker/action_plugins/openshift_health_check.py
index 0411797b1..8b23533c8 100644
--- a/roles/openshift_health_checker/action_plugins/openshift_health_check.py
+++ b/roles/openshift_health_checker/action_plugins/openshift_health_check.py
@@ -74,6 +74,7 @@ class ActionModule(ActionBase):
result["failed"] = True
result["msg"] = "One or more checks failed"
+ result["changed"] = any(r.get("changed", False) for r in check_results.values())
return result
def load_known_checks(self):