Skip to content
Snippets Groups Projects
Commit 7258d081 authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix bug when invalidating destination retry timings

parent 2b8d28b0
No related branches found
No related tags found
No related merge requests found
...@@ -216,7 +216,7 @@ class TransactionStore(SQLBaseStore): ...@@ -216,7 +216,7 @@ class TransactionStore(SQLBaseStore):
retry_interval (int) - how long until next retry in ms retry_interval (int) - how long until next retry in ms
""" """
self._destination_retry_cache.pop(destination) self._destination_retry_cache.pop(destination, None)
return self.runInteraction( return self.runInteraction(
"set_destination_retry_timings", "set_destination_retry_timings",
self._set_destination_retry_timings, self._set_destination_retry_timings,
......
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