or of course we could just return the deferred

pull/27/head
David Baker 2015-01-27 16:05:23 +00:00
parent eba89f093f
commit 5eacaeb4a7
1 changed files with 1 additions and 2 deletions

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
)