mirror of
https://github.com/pgsty/minio.git
synced 2026-07-19 20:20:25 +03:00
utils: Shutdown channel should be bufferred.
This commit is contained in:
@@ -146,7 +146,7 @@ func initGracefulShutdown(onExitFn onExitFunc) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Global shutdown signal channel.
|
// Global shutdown signal channel.
|
||||||
var globalShutdownSignalCh = make(chan struct{})
|
var globalShutdownSignalCh = make(chan struct{}, 1)
|
||||||
|
|
||||||
// Start to monitor shutdownSignal to execute shutdown callbacks
|
// Start to monitor shutdownSignal to execute shutdown callbacks
|
||||||
func startMonitorShutdownSignal(onExitFn onExitFunc) error {
|
func startMonitorShutdownSignal(onExitFn onExitFunc) error {
|
||||||
|
|||||||
Reference in New Issue
Block a user