Fix log message formatting error

Logging does not support new style format strings.

Change-Id: I8fcdb8a1034066a41a46ba3a6fc45dd3b0257c99
This commit is contained in:
Sean Eagan 2018-10-15 08:55:25 -05:00
parent aa07ae72d5
commit 28f919d60f
1 changed files with 2 additions and 2 deletions

View File

@ -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)