summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-05-21 14:50:57 +0100
committerErik Johnston <erik@matrix.org>2015-05-21 14:50:57 +0100
commitac5f2bf9db9f37d2cb076cfa3a0912ecb948f508 (patch)
treecccf7121461923b05541fe2c1f5796a9b91bc9c5 /synapse
parentAdd comments (diff)
downloadsynapse-ac5f2bf9db9f37d2cb076cfa3a0912ecb948f508.tar.xz
s/for events/for requests for events/
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py

index 3d798f5fa2..84a799bcff 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py
@@ -42,7 +42,7 @@ logger = logging.getLogger(__name__) # TODO: Make these configurable. EVENT_QUEUE_THREADS = 3 # Max number of threads that will fetch events EVENT_QUEUE_ITERATIONS = 3 # No. times we block waiting for events -EVENT_QUEUE_TIMEOUT_S = 0.1 # Timeout when waiting for events +EVENT_QUEUE_TIMEOUT_S = 0.1 # Timeout when waiting for requests for events class EventsStore(SQLBaseStore):