summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-06-06 15:14:21 +0100
committerErik Johnston <erik@matrix.org>2016-06-06 15:14:21 +0100
commit377eb480ca66a376e85cf8927f7f9112ed60e8bc (patch)
treee897884a3b69be462380fe74020d77b4085fffaa
parentMerge pull request #841 from matrix-org/erikj/event_counter (diff)
downloadsynapse-377eb480ca66a376e85cf8927f7f9112ed60e8bc.tar.xz
Fire after 30s not 8h
-rw-r--r--synapse/handlers/presence.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/presence.py b/synapse/handlers/presence.py
index 0e19f777b8..2e772da660 100644
--- a/synapse/handlers/presence.py
+++ b/synapse/handlers/presence.py
@@ -183,7 +183,7 @@ class PresenceHandler(object):
         # The initial delay is to allow disconnected clients a chance to
         # reconnect before we treat them as offline.
         self.clock.call_later(
-            30 * 1000,
+            30,
             self.clock.looping_call,
             self._handle_timeouts,
             5000,