diff options
author | Erik Johnston <erikj@jki.re> | 2017-03-21 13:11:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-21 13:11:15 +0000 |
commit | 37a187bfabdd6d39630a04739e822d0d1fa7daea (patch) | |
tree | 7372b8cb70c6ae240e4465363607338df3d76c96 /synapse/replication/resource.py | |
parent | Merge pull request #2035 from matrix-org/rav/debug_federation (diff) | |
parent | Fix unit test (diff) | |
download | synapse-37a187bfabdd6d39630a04739e822d0d1fa7daea.tar.xz |
Merge pull request #2033 from matrix-org/erikj/repl_speed
Don't send the full event json over replication
Diffstat (limited to 'synapse/replication/resource.py')
-rw-r--r-- | synapse/replication/resource.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/replication/resource.py b/synapse/replication/resource.py index d8eb14592b..03930fe958 100644 --- a/synapse/replication/resource.py +++ b/synapse/replication/resource.py @@ -283,12 +283,12 @@ class ReplicationResource(Resource): if request_events != upto_events_token: writer.write_header_and_rows("events", res.new_forward_events, ( - "position", "internal", "json", "state_group" + "position", "event_id", "room_id", "type", "state_key", ), position=upto_events_token) if request_backfill != upto_backfill_token: writer.write_header_and_rows("backfill", res.new_backfill_events, ( - "position", "internal", "json", "state_group", + "position", "event_id", "room_id", "type", "state_key", "redacts", ), position=upto_backfill_token) writer.write_header_and_rows( |