Browse Source

Consider previous value of 'changed' when updating

This avoids unintentionally overriding the value from `True` to `False`.
Rodolfo Carvalho 7 years ago
parent
commit
3912fa895a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_health_checker/openshift_checks/docker_storage.py

+ 1 - 1
roles/openshift_health_checker/openshift_checks/docker_storage.py

@@ -64,7 +64,7 @@ class DockerStorage(DockerHostMixin, OpenShiftCheck):
                 )
                 return {"failed": True, "changed": changed, "msg": msg}
             result = self._check_dm_usage(driver_status, task_vars)
-            result["changed"] = changed
+            result['changed'] = result.get('changed', False) or changed
             return result
 
         # TODO(lmeyer): determine how to check usage for overlay2