diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-07-27 18:54:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-27 18:54:43 +0100 |
commit | f57b99af22de874b11f44ef32c1f1425ec1344b9 (patch) | |
tree | d11bbffa9546fd70152a4a75dfad0a0c221f8bbe /changelog.d | |
parent | update changelog (diff) | |
download | synapse-f57b99af22de874b11f44ef32c1f1425ec1344b9.tar.xz |
Handle replication commands synchronously where possible (#7876)
Most of the stuff we do for replication commands can be done synchronously. There's no point spinning up background processes if we're not going to need them.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/7876.bugfix | 1 | ||||
-rw-r--r-- | changelog.d/7876.misc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/changelog.d/7876.bugfix b/changelog.d/7876.bugfix new file mode 100644 index 0000000000..4ba2fadd58 --- /dev/null +++ b/changelog.d/7876.bugfix @@ -0,0 +1 @@ +Fix an `AssertionError` exception introduced in v1.18.0rc1. diff --git a/changelog.d/7876.misc b/changelog.d/7876.misc new file mode 100644 index 0000000000..5c78a158cd --- /dev/null +++ b/changelog.d/7876.misc @@ -0,0 +1 @@ +Further optimise queueing of inbound replication commands. |