Skip to content
Snippets Groups Projects
Unverified Commit 0660f8e3 authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

Merge pull request #6072 from matrix-org/rav/fix_retry_reset

Fix exception when resetting retry timings
parents 7ef319ae 9d943132
No related branches found
No related tags found
No related merge requests found
Add a 'failure_ts' column to the 'destinations' database table.
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment