[master] 58d43d2df mgt: Lower termination loadness
Nils Goroll
nils.goroll at uplex.de
Wed Nov 26 14:51:05 UTC 2025
commit 58d43d2dffc6fb3dbfc927746509d1d39f48cb78
Author: Dridi Boukelmoune <dridi.boukelmoune at gmail.com>
Date: Mon Nov 3 16:08:16 2025 +0100
mgt: Lower termination loadness
It is not necessarily an error to receive a signal asking MGT to
terminate.
Fixes #4409
(Committer edit: Reworded after removal of SIGHUP change)
diff --git a/bin/varnishd/mgt/mgt_main.c b/bin/varnishd/mgt/mgt_main.c
index 3aab45395..28ca03e19 100644
--- a/bin/varnishd/mgt/mgt_main.c
+++ b/bin/varnishd/mgt/mgt_main.c
@@ -449,7 +449,8 @@ mgt_sigint(const struct vev *e, int what)
{
(void)what;
- MGT_Complain(C_ERR, "Manager got %s from PID %jd", e->name, (intmax_t)e->siginfo->si_pid);
+ MGT_Complain(C_INFO, "Manager got %s from PID %jd",
+ e->name, (intmax_t)e->siginfo->si_pid);
(void)fflush(stdout);
if (MCH_Running())
MCH_Stop_Child();
More information about the varnish-commit
mailing list