diff options
author | Erik Johnston <erikj@jki.re> | 2019-01-18 12:17:04 +0000 |
---|---|---|
committer | Amber Brown <hawkowl@atleastfornow.net> | 2019-01-18 23:17:04 +1100 |
commit | 25dd56ace36e9d3dbb717a34c9b9051b243f84ad (patch) | |
tree | e90eb41341272b569f9c4d2e74fa2f892f6bc981 /changelog.d | |
parent | Tweak code coverage settings (#4400) (diff) | |
download | synapse-25dd56ace36e9d3dbb717a34c9b9051b243f84ad.tar.xz |
Fix race when persisting create event (#4404)
* Fix race when persisting create event When persisting a chunk of DAG it is sometimes requried to do a state resolution, which requires knowledge of the room version. If this happens while we're persisting the create event then we need to use that event rather than attempting to look it up in the database.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/4404.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/4404.bugfix b/changelog.d/4404.bugfix new file mode 100644 index 0000000000..5d40a3a60b --- /dev/null +++ b/changelog.d/4404.bugfix @@ -0,0 +1 @@ +Fix potential bug where creating or joining a room could fail |