mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-06 17:04:10 -04:00
Catch-up after Federation Outage (split, 4): catch-up loop (#8272)
This commit is contained in:
parent
aec294ee0d
commit
576bc37d31
5 changed files with 338 additions and 5 deletions
|
@ -73,6 +73,7 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase):
|
|||
"delivered_txn",
|
||||
"get_received_txn_response",
|
||||
"set_received_txn_response",
|
||||
"get_destination_last_successful_stream_ordering",
|
||||
"get_destination_retry_timings",
|
||||
"get_devices_by_remote",
|
||||
"maybe_store_room_on_invite",
|
||||
|
@ -121,6 +122,10 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase):
|
|||
(0, [])
|
||||
)
|
||||
|
||||
self.datastore.get_destination_last_successful_stream_ordering.return_value = make_awaitable(
|
||||
None
|
||||
)
|
||||
|
||||
def get_received_txn_response(*args):
|
||||
return defer.succeed(None)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue