From ce2d2de6cf4d2380a0f962e26f0d992d6050e882 Mon Sep 17 00:00:00 2001 From: Brandon Squizzato Date: Fri, 11 Feb 2022 15:26:18 -0500 Subject: [PATCH] Add a log msg to clarify if something reached 'ready' by the end --- bonfire/openshift.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bonfire/openshift.py b/bonfire/openshift.py index 83d0e09f..5c4d74e5 100644 --- a/bonfire/openshift.py +++ b/bonfire/openshift.py @@ -677,6 +677,8 @@ def wait_for_ready_threaded(waiters, timeout=600): if all_failed_resources: log.info("some resources failed to become ready: %s", ", ".join(all_failed_resources)) return False + + log.info("all resources being monitored have now reached 'ready' state") return True