From 28f919d60fb363b0147e4294839939ed7a617ab3 Mon Sep 17 00:00:00 2001 From: Sean Eagan Date: Mon, 15 Oct 2018 08:55:25 -0500 Subject: [PATCH] Fix log message formatting error Logging does not support new style format strings. Change-Id: I8fcdb8a1034066a41a46ba3a6fc45dd3b0257c99 --- armada/handlers/wait.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/armada/handlers/wait.py b/armada/handlers/wait.py index 482a86ac..ed9fda37 100644 --- a/armada/handlers/wait.py +++ b/armada/handlers/wait.py @@ -230,8 +230,8 @@ class ResourceWait(ABC): break LOG.debug( - 'Continuing to wait: {} consecutive attempts without ' - 'modified resources of {} required.', successes, + 'Continuing to wait: %s consecutive attempts without ' + 'modified resources of %s required.', successes, self.chart_wait.k8s_wait_attempts) time.sleep(self.chart_wait.k8s_wait_attempt_sleep)