diff options
author | Kegsay <kegan@matrix.org> | 2020-03-24 12:20:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-24 12:20:10 +0000 |
commit | 6bac7e5efddea05aa68a56e44423d2bc157ec364 (patch) | |
tree | c12cbf607cfbe9d7cc69bcfcbc58eaca2f8ab3e4 /syncapi/storage/postgres/output_room_events_table.go | |
parent | 5a1a1ded1b5d8387f89e3d586729d175c1f1a1d0 (diff) |
Implement backfill over federation (#938)
* Implement history visibility checks for /backfill
Required for p2p to show history correctly.
* Add sytest
* Logging
* Fix two backfill bugs which prevented backfill from working correctly
- When receiving backfill requests, do not send the event that was in the original request.
- When storing backfill results, correctly update the backwards extremity for the room.
* hack: make backfill work multiple times
* add sqlite impl and remove logging
* Linting
Diffstat (limited to 'syncapi/storage/postgres/output_room_events_table.go')
-rw-r--r-- | syncapi/storage/postgres/output_room_events_table.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/syncapi/storage/postgres/output_room_events_table.go b/syncapi/storage/postgres/output_room_events_table.go index 5f9a1d0c..0b53dfa9 100644 --- a/syncapi/storage/postgres/output_room_events_table.go +++ b/syncapi/storage/postgres/output_room_events_table.go @@ -305,7 +305,6 @@ func (s *outputRoomEventsStatements) selectRecentEvents( } else { stmt = common.TxStmt(txn, s.selectRecentEventsStmt) } - rows, err := stmt.QueryContext(ctx, roomID, fromPos, toPos, limit) if err != nil { return nil, err |