From fb9515d56608362d1b6a53dbe918e3f5e47a7f6d Mon Sep 17 00:00:00 2001 From: Chris Usher Date: Sat, 28 Sep 2019 17:43:27 +0100 Subject: [PATCH] fixed localhost bug in backfiller --- 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 a4217fa..66a8b89 100644 --- a/backfiller/backfiller/main.py +++ b/backfiller/backfiller/main.py @@ -269,7 +269,7 @@ class BackfillerManager(object): WHERE backfill_from""") for row in results: nodes[row.name] = row.url - + nodes = {key:val for key, val in nodes.items() if val != self.localhost} nodes.pop(self.localhost, None) return nodes.values()