From 2d46c8d1fdd3f71253b707fb0219dbbc16da218b Mon Sep 17 00:00:00 2001 From: "Luis (LT) Carbonell" Date: Mon, 30 Sep 2024 11:48:55 -0400 Subject: [PATCH] Add clarifying message (#28535) --- command/server.go | 1 + 1 file changed, 1 insertion(+) diff --git a/command/server.go b/command/server.go index 5aba92cbd3..52013aab2b 100644 --- a/command/server.go +++ b/command/server.go @@ -1721,6 +1721,7 @@ func (c *ServerCommand) Run(args []string) int { // Notify systemd that the server has completed reloading config c.notifySystemd(systemd.SdNotifyReady) case <-c.SigUSR2Ch: + c.logger.Info("Received SIGUSR2, dumping goroutines. This is expected behavior. Vault continues to run normally.") logWriter := c.logger.StandardWriter(&hclog.StandardLoggerOptions{}) pprof.Lookup("goroutine").WriteTo(logWriter, 2)