diff options
author | Erik Johnston <erik@matrix.org> | 2015-05-05 17:36:57 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-05-05 17:36:57 +0100 |
commit | 3d5a955e08c21c076c55806c3c1e78a19c09ad4f (patch) | |
tree | b1fda3b4de01b32f40f3267892744161d06930a3 | |
parent | Don't call 'encode_parameter' no-op (diff) | |
download | synapse-3d5a955e08c21c076c55806c3c1e78a19c09ad4f.tar.xz |
Missed events are not outliers
-rw-r--r-- | synapse/federation/federation_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/federation_client.py b/synapse/federation/federation_client.py index 6811a0e3d1..904c7c0945 100644 --- a/synapse/federation/federation_client.py +++ b/synapse/federation/federation_client.py @@ -491,7 +491,7 @@ class FederationClient(FederationBase): ] signed_events = yield self._check_sigs_and_hash_and_fetch( - destination, events, outlier=True + destination, events, outlier=False ) have_gotten_all_from_destination = True |