fixed localhost bug in backfiller

pull/79/head
Chris Usher 6 years ago
parent 37c9eff587
commit fb9515d566

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

Loading…
Cancel
Save