summary refs log tree commit diff
path: root/synapse/handlers/message.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/handlers/message.py')
-rw-r--r--synapse/handlers/message.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py

index 7299aa7e8d..f8599bab2f 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py
@@ -101,7 +101,7 @@ class MessageHandler: self._scheduled_expiry: Optional[IDelayedCall] = None if not hs.config.worker.worker_app: - run_as_background_process( # type: ignore[unused-awaitable] + run_as_background_process( # type: ignore[unused-awaitable] "_schedule_next_expiry", self._schedule_next_expiry ) @@ -1918,7 +1918,7 @@ class EventCreationHandler: if event.type == EventTypes.Message: # We don't want to block sending messages on any presence code. This # matters as sometimes presence code can take a while. - run_in_background(self._bump_active_time, requester.user) # type: ignore[unused-awaitable] + run_in_background(self._bump_active_time, requester.user) # type: ignore[unused-awaitable] async def _notify() -> None: try: @@ -1928,7 +1928,7 @@ class EventCreationHandler: except Exception: logger.exception("Error notifying about new room events") - run_in_background(_notify) # type: ignore[unused-awaitable] + run_in_background(_notify) # type: ignore[unused-awaitable] return persisted_events[-1]