Up timeout to 10 minutes

This commit is contained in:
Erik Johnston 2014-08-28 16:44:09 +01:00
parent eb3094ed31
commit a8d318cf82

View file

@ -100,7 +100,7 @@ class EventStreamHandler(BaseHandler):
logger.debug("Scheduling _later: for %s", auth_user) logger.debug("Scheduling _later: for %s", auth_user)
self._stop_timer_per_user[auth_user] = ( self._stop_timer_per_user[auth_user] = (
self.clock.call_later(10, _later) self.clock.call_later(600, _later)
) )