From d23bed0af7686b08fa4a28b85bd4f2a7e1a551e6 Mon Sep 17 00:00:00 2001 From: Clint Armstrong Date: Mon, 13 Jul 2015 09:40:54 -0400 Subject: [PATCH] don't check dont-retry' --- poller-service.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/poller-service.py b/poller-service.py index 43ee9875c4..8852a1a65a 100755 --- a/poller-service.py +++ b/poller-service.py @@ -250,10 +250,6 @@ while True: if not lockFree('polling.{}'.format(device_id)): releaseLock('queued.{}'.format(device_id)) continue - if device_id in dont_retry: - retry_devs_found[device_id] = dont_retry[device_id] - releaseLock('queued.{}'.format(device_id)) - continue if next_poll and next_poll > datetime.now(): log.debug('DEBUG: Sleeping until {0} before polling {2}'.format(next_poll, device_id))