Commit bfd4206b authored by Stan Hu's avatar Stan Hu

Merge branch 'puma_sigterm' into 'master'

Send SIGINT instead of SIGQUIT to puma

See merge request gitlab-org/gitlab!54446
parents b726602f c440a8dd
......@@ -36,7 +36,7 @@ start_foreground()
stop()
{
get_puma_pid
kill -QUIT "$(get_puma_pid)"
kill -INT "$(get_puma_pid)"
}
reload()
......
......@@ -36,7 +36,7 @@ start_foreground()
stop()
{
get_puma_pid
kill -QUIT "$(get_puma_pid)"
kill -INT "$(get_puma_pid)"
}
reload()
......
---
title: Send SIGINT instead of SIGQUIT to puma
merge_request: 54446
author: Jörg Behrmann @behrmann
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment