From 02cbce57ddfe25e077dfecf3ae6d596643c11a1f Mon Sep 17 00:00:00 2001 From: JeffreyDevloo Date: Mon, 15 Jul 2019 14:20:02 +0200 Subject: [PATCH] Fix the wrong format in the scrubber Happened during longpolling --- ovs/lib/helpers/generic/scrubber.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovs/lib/helpers/generic/scrubber.py b/ovs/lib/helpers/generic/scrubber.py index 47a50df87..0a1c4d4f1 100644 --- a/ovs/lib/helpers/generic/scrubber.py +++ b/ovs/lib/helpers/generic/scrubber.py @@ -742,7 +742,7 @@ def _long_poll_proxy_state(self, states, timeout=None): return current_state if time.time() - start > timeout: raise RuntimeError('Long polling for the state has timed out') - self._logger.debug(self._format_message('Proxies {0{ their state does not match any in \'{1}\' (Current: {2})' + self._logger.debug(self._format_message('Proxies {0} their state does not match any in \'{1}\' (Current: {2})' .format(', '.join(self.alba_proxy_services), states, current_state))) time.sleep(1) return None