summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorEric Eastwood <erice@element.io>2023-06-13 16:34:54 -0500
committerGitHub <noreply@github.com>2023-06-13 16:34:54 -0500
commit8ddb2de55387d54bac53138f374f55c7608991ce (patch)
treede00021624bb076021113dbdbcd25d2a5eb76199 /changelog.d
parentReplace `EventContext` fields `prev_group` and `delta_ids` with field `state_... (diff)
downloadsynapse-8ddb2de55387d54bac53138f374f55c7608991ce.tar.xz
Document `looping_call()` functionality that will wait for the given function to finish before scheduling another (#15772)
Thanks to @erikjohnston for clarifying, https://github.com/matrix-org/synapse/pull/15743#discussion_r1226544457

We don't have to worry about calls stacking up if the given function takes longer than the scheduled time.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/15772.doc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/15772.doc b/changelog.d/15772.doc
new file mode 100644
index 0000000000..4d6c933c71
--- /dev/null
+++ b/changelog.d/15772.doc
@@ -0,0 +1 @@
+Document `looping_call()` functionality that will wait for the given function to finish before scheduling another.