actually reset retry schedule if we can successfuly talk to it

This commit is contained in:
Matthew Hodgson 2014-12-08 00:17:12 +00:00
parent 5cd43d4b9f
commit 9c43b258ec
2 changed files with 9 additions and 0 deletions

View file

@ -864,6 +864,9 @@ class _TransactionQueue(object):
for deferred in deferreds:
if code == 200:
if retry_last_ts:
# this host is alive! reset retry schedule
self.store.set_destination_retry_timings(destination, 0, 0)
deferred.callback(None)
else:
self.start_retrying(destination, retry_interval)