0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-20 13:28:20 +02:00

Return a non-fatal error to the federation API on a state regression (#1498)

* Return a non-fatal error to the federation API on a state regression

* Return no error but don't morph state
This commit is contained in:
Neil Alexander 2020-10-08 12:13:50 +01:00 committed by GitHub
parent 3e12f6e9c2
commit 429bd48129
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -236,10 +236,13 @@ func (u *latestEventsUpdater) latestState() error {
if len(u.removed) > len(u.added) {
// This really shouldn't happen.
// TODO: What is ultimately the best way to handle this situation?
return fmt.Errorf(
"invalid state delta wants to remove %d state but only add %d state (between state snapshots %d and %d)",
len(u.removed), len(u.added), u.oldStateNID, u.newStateNID,
logrus.Errorf(
"Invalid state delta on event %q wants to remove %d state but only add %d state (between state snapshots %d and %d)",
u.event.EventID(), len(u.removed), len(u.added), u.oldStateNID, u.newStateNID,
)
u.added = u.added[:0]
u.removed = u.removed[:0]
return nil
}
// Also work out the state before the event removes and the event