Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When running under systemd, send ready when server completed reloading config #7028 #15041

Merged
merged 2 commits into from May 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog/15041.txt
@@ -0,0 +1,3 @@
```release-note:bug
core: fixed systemd reloading notification
```
3 changes: 3 additions & 0 deletions command/server.go
Expand Up @@ -1627,6 +1627,9 @@ func (c *ServerCommand) Run(args []string) int {
// changes in kms_libraries)
core.ReloadManagedKeyRegistryConfig()

// Notify systemd that the server has completed reloading config
c.notifySystemd(systemd.SdNotifyReady)

case <-c.SigUSR2Ch:
logWriter := c.logger.StandardWriter(&hclog.StandardLoggerOptions{})
pprof.Lookup("goroutine").WriteTo(logWriter, 2)
Expand Down