summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2024-03-13 17:21:37 +0000
committerGitHub <noreply@github.com>2024-03-13 17:21:37 +0000
commit92f20696273ca88c24d1dcdd738bd0f1d4be9e61 (patch)
tree3266b93e37633af52e2916ce1648a4ce882c7490 /changelog.d
parentBump ruff from 0.1.14 to 0.3.2 (#16994) (diff)
downloadsynapse-92f20696273ca88c24d1dcdd738bd0f1d4be9e61.tar.xz
Multi-worker-docker-container: disable log buffering (#16919)
Background: we have a `matrixdotorg/synapse-workers` docker image, which
is intended for running multiple workers within the same container. That
image includes a `prefix-log` script which, for each line printed to
stdout or stderr by one of the processes, prepends the name of the
process.

This commit disables buffering in that script, so that lines are logged
quickly after they are printed. This makes it much easier to understand
the output, since they then come out in a natural order.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/16919.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/16919.misc b/changelog.d/16919.misc
new file mode 100644
index 0000000000..2c76f25379
--- /dev/null
+++ b/changelog.d/16919.misc
@@ -0,0 +1 @@
+Multi-worker-docker-container: disable log buffering.