diff options
author | Marek Matys <57749215+thermaq@users.noreply.github.com> | 2021-05-21 13:02:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 12:02:06 +0100 |
commit | 6a8643ff3da905568e3f2ec047182753352e39d1 (patch) | |
tree | f329eb78abd5a80f779be75df5d59b8442ed10d7 /changelog.d | |
parent | Add a batching queue implementation. (#10017) (diff) | |
download | synapse-6a8643ff3da905568e3f2ec047182753352e39d1.tar.xz |
Fixed removal of new presence stream states (#10014)
Fixes: https://github.com/matrix-org/synapse/issues/9962 This is a fix for above problem. I fixed it by swaping the order of insertion of new records and deletion of old ones. This ensures that we don't delete fresh database records as we do deletes before inserts. Signed-off-by: Marek Matys <themarcq@gmail.com>
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/10014.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/10014.bugfix b/changelog.d/10014.bugfix new file mode 100644 index 0000000000..7cf3603f94 --- /dev/null +++ b/changelog.d/10014.bugfix @@ -0,0 +1 @@ +Fixed deletion of new presence stream states from database. |