summary refs log tree commit diff
path: root/synapse/util/distributor.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2014-12-18 18:47:13 +0000
committerMark Haines <mark.haines@matrix.org>2014-12-18 18:47:13 +0000
commit041ac476a53f7adaa436309ccbb85f269bbb47dd (patch)
tree0157b5c391a54b73a3a50e8fa1ad947c00131ea0 /synapse/util/distributor.py
parentReplace distributor deferred list, with a simple for loop until I understand ... (diff)
downloadsynapse-041ac476a53f7adaa436309ccbb85f269bbb47dd.tar.xz
Supply auth_chain along with current state in '/state/', fetch auth events from a remote server if we are missing some of them
Diffstat (limited to 'synapse/util/distributor.py')
-rw-r--r--synapse/util/distributor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/util/distributor.py b/synapse/util/distributor.py

index 6e69296d65..6925ac96b6 100644 --- a/synapse/util/distributor.py +++ b/synapse/util/distributor.py
@@ -120,5 +120,5 @@ class Signal(object): results = [] for deferred in deferreds: result = yield deferred - results.append(results) + results.append(result) defer.returnValue(results)