diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-12-18 18:47:13 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-12-18 18:47:13 +0000 |
commit | 041ac476a53f7adaa436309ccbb85f269bbb47dd (patch) | |
tree | 0157b5c391a54b73a3a50e8fa1ad947c00131ea0 /synapse/util | |
parent | Replace distributor deferred list, with a simple for loop until I understand ... (diff) | |
download | synapse-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')
-rw-r--r-- | synapse/util/distributor.py | 2 |
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) |