0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-10-08 01:19:17 +02:00

or of course we could just return the deferred

This commit is contained in:
David Baker 2015-01-27 16:05:23 +00:00
parent eba89f093f
commit 5eacaeb4a7

View file

@ -99,7 +99,6 @@ class EventStreamHandler(BaseHandler):
# 10 seconds of grace to allow the client to reconnect again
# before we think they're gone
@defer.inlineCallbacks
def _later():
logger.debug(
"_later stopped_user_eventstream %s", auth_user
@ -107,7 +106,7 @@ class EventStreamHandler(BaseHandler):
self._stop_timer_per_user.pop(auth_user, None)
yield self.distributor.fire(
return self.distributor.fire(
"stopped_user_eventstream", auth_user
)