diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-10-06 11:05:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-06 11:05:00 +0100 |
commit | bf90db5b60d694d8af0e8ec1d90d2501604ab219 (patch) | |
tree | 610aaeae9455bb40fddfef437e385528fd934e2a /roomserver/api/input.go | |
parent | 8fb74fe99a968aa438d436bd251baf5a790e8156 (diff) |
Remove KindRewrite (#1481)
* Don't send rewrite events
* Remove final traces of rewrite events
* Remove test that is no longer needed
* Revert "Remove test that is no longer needed"
This reverts commit 9a45babff690480acd656a52f2c2950a5f7e9ada.
* Update test to use KindOutlier
Diffstat (limited to 'roomserver/api/input.go')
-rw-r--r-- | roomserver/api/input.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/roomserver/api/input.go b/roomserver/api/input.go index 862a6fa1..a72e2d9a 100644 --- a/roomserver/api/input.go +++ b/roomserver/api/input.go @@ -35,10 +35,6 @@ const ( // KindBackfill event extend the contiguous graph going backwards. // They always have state. KindBackfill = 3 - // KindRewrite events are used when rewriting the head of the room - // graph with entirely new state. The output events generated will - // be state events rather than timeline events. - KindRewrite = 4 ) // DoNotSendToOtherServers tells us not to send the event to other matrix |