Fix exception when resetting retry timings

Fixes:
> TypeError: set_destination_retry_timings() missing 1 required positional
argument: 'retry_interval'

Introduced in #6016.
This commit is contained in:
Richard van der Hoff 2019-09-20 12:05:00 +01:00
parent aeb40f355c
commit 9d94313209
2 changed files with 2 additions and 1 deletions

1
changelog.d/6072.misc Normal file
View file

@ -0,0 +1 @@
Add a 'failure_ts' column to the 'destinations' database table.

View file

@ -165,7 +165,7 @@ class Authenticator(object):
async def _reset_retry_timings(self, origin):
try:
logger.info("Marking origin %r as up", origin)
await self.store.set_destination_retry_timings(origin, 0, 0)
await self.store.set_destination_retry_timings(origin, None, 0, 0)
except Exception:
logger.exception("Error resetting retry timings on %s", origin)