diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-05-03 21:27:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 21:27:52 +0100 |
commit | 96e0cdbc5af0563ee805ec4e588e1df14899af66 (patch) | |
tree | 16778bcb0ad585075158c154fa462cbd7eb8222d /changelog.d | |
parent | Bump Synapse minimum Python version to 3.7.1 (#12613) (diff) | |
download | synapse-96e0cdbc5af0563ee805ec4e588e1df14899af66.tar.xz |
Add a consistency check on events read from the database (#12620)
I've seen a few errors which can only plausibly be explained by the calculated event id for an event being different from the ID of the event in the database. It should be cheap to check this, so let's do so and raise an exception.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/12620.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/12620.misc b/changelog.d/12620.misc new file mode 100644 index 0000000000..63f8e540c3 --- /dev/null +++ b/changelog.d/12620.misc @@ -0,0 +1 @@ +Add a consistency check on events which we read from the database. |