mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
fix issue: Windows Platform did not handle process signal (#3154)
This commit is contained in:
parent
4d7f9552fe
commit
84ed66018e
@ -9,7 +9,19 @@
|
||||
|
||||
package ghttp
|
||||
|
||||
// registerSignalHandler does nothing on window platform.
|
||||
func handleProcessSignal() {
|
||||
import (
|
||||
"context"
|
||||
"os"
|
||||
|
||||
"github.com/gogf/gf/v2/os/gproc"
|
||||
)
|
||||
|
||||
// handleProcessSignal handles all signals from system in blocking way.
|
||||
func handleProcessSignal() {
|
||||
var ctx = context.TODO()
|
||||
gproc.AddSigHandlerShutdown(func(sig os.Signal) {
|
||||
shutdownWebServersGracefully(ctx, sig)
|
||||
})
|
||||
|
||||
gproc.Listen()
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user