mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 20:04:54 -04:00
actually reset retry schedule if we can successfuly talk to it
This commit is contained in:
parent
5cd43d4b9f
commit
9c43b258ec
2 changed files with 9 additions and 0 deletions
|
@ -207,6 +207,12 @@ class FederationHandler(BaseHandler):
|
|||
e.msg,
|
||||
affected=event.event_id,
|
||||
)
|
||||
|
||||
# if we're receiving valid events from an origin,
|
||||
# it's probably a good idea to mark it as not in retry-state
|
||||
# for sending (although this is a bit of a leap)
|
||||
if ((self.store.get_destination_retry_timings(origin))[0]):
|
||||
self.store.set_destination_retry_timings(origin, 0, 0)
|
||||
|
||||
room = yield self.store.get_room(event.room_id)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue