diff options
author | Eric Eastwood <erice@element.io> | 2023-05-24 23:22:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 23:22:24 -0500 |
commit | 77156a4bc1f87e98754e3f7f86e52a84a4253a10 (patch) | |
tree | cb1c5f894d6a34b92e6bc2404b0b28f654e6ed8f /changelog.d | |
parent | Add requesting user id parameter to key claim methods in `TransportLayerClien... (diff) | |
download | synapse-77156a4bc1f87e98754e3f7f86e52a84a4253a10.tar.xz |
Process previously failed backfill events in the background (#15585)
Process previously failed backfill events in the background because they are bound to fail again and we don't need to waste time holding up the request for something that is bound to fail again. Fix https://github.com/matrix-org/synapse/issues/13623 Follow-up to https://github.com/matrix-org/synapse/issues/13621 and https://github.com/matrix-org/synapse/issues/13622 Part of making `/messages` faster: https://github.com/matrix-org/synapse/issues/13356
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/15585.feature | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/15585.feature b/changelog.d/15585.feature new file mode 100644 index 0000000000..1adcfb69ee --- /dev/null +++ b/changelog.d/15585.feature @@ -0,0 +1 @@ +Process previously failed backfill events in the background to avoid blocking requests for something that is bound to fail again. |