diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-09-26 23:07:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-26 23:07:02 +0100 |
commit | d6b85a2a7dea2737e69d67842c2246975ec64bce (patch) | |
tree | 62d0b0e0b9e3c091a1b4829dee61e71a11890128 /changelog.d | |
parent | Improve tests for get_unread_push_actions_for_user_in_range_*. (#13893) (diff) | |
download | synapse-d6b85a2a7dea2737e69d67842c2246975ec64bce.tar.xz |
Complement image: propagate SIGTERM to all workers (#13914)
This should mean that logs from worker processes are flushed before shutdown. When a test completes, Complement stops the docker container, which means that synapse will receive a SIGTERM. Currently, the `complement_fork_starter` exits immediately (without notifying the worker processes), which means that the workers never get a chance to flush their logs before the whole container is vaped. We can fix this by propagating the SIGTERM to the children.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/13914.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/13914.misc b/changelog.d/13914.misc new file mode 100644 index 0000000000..c29bc25d38 --- /dev/null +++ b/changelog.d/13914.misc @@ -0,0 +1 @@ +Complement image: propagate SIGTERM to all workers. |