mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Always return a deferred from get_current_state_deltas
. (#7019)
This currently causes presence notify code to log exceptions when there is no state changes to process. This doesn't actually cause any problems as we'd simply do nothing anyway.
This commit is contained in:
parent
3ab8e9c293
commit
b29474e0aa
1
changelog.d/7019.misc
Normal file
1
changelog.d/7019.misc
Normal file
@ -0,0 +1 @@
|
||||
Port `synapse.handlers.presence` to async/await.
|
@ -15,6 +15,8 @@
|
||||
|
||||
import logging
|
||||
|
||||
from twisted.internet import defer
|
||||
|
||||
from synapse.storage._base import SQLBaseStore
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
@ -56,7 +58,7 @@ class StateDeltasStore(SQLBaseStore):
|
||||
# if the CSDs haven't changed between prev_stream_id and now, we
|
||||
# know for certain that they haven't changed between prev_stream_id and
|
||||
# max_stream_id.
|
||||
return max_stream_id, []
|
||||
return defer.succeed((max_stream_id, []))
|
||||
|
||||
def get_current_state_deltas_txn(txn):
|
||||
# First we calculate the max stream id that will give us less than
|
||||
|
Loading…
Reference in New Issue
Block a user