From 965154b7165ae10ce28beb1b18ce8b3bb2485149 Mon Sep 17 00:00:00 2001 From: Christopher Usher Date: Sun, 10 Nov 2019 01:07:38 +0000 Subject: [PATCH] removed redundant option --- backfiller/backfiller/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backfiller/backfiller/main.py b/backfiller/backfiller/main.py index 7ac3488..365f2ff 100644 --- a/backfiller/backfiller/main.py +++ b/backfiller/backfiller/main.py @@ -319,7 +319,7 @@ class BackfillerManager(object): if failures < MAX_BACKOFF: failures += 1 delay = common.jitter(TIMEOUT * 2**failures) - self.logger.exception('Getting nodes failed. Retrying in {:.0f} s'.format(delay), exc_info=True) + self.logger.exception('Getting nodes failed. Retrying in {:.0f} s'.format(delay)) node_list_errors.inc() self.stopping.wait(delay) continue