mirror of https://github.com/minio/minio.git
set server base context on gateway http server (#9365)
This commit is contained in:
parent
69fb68ef0b
commit
bd437c1c17
|
@ -17,7 +17,9 @@
|
|||
package cmd
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"net"
|
||||
"net/url"
|
||||
"os"
|
||||
"os/signal"
|
||||
|
@ -196,6 +198,9 @@ func StartGateway(ctx *cli.Context, gw Gateway) {
|
|||
|
||||
httpServer := xhttp.NewServer([]string{globalCLIContext.Addr},
|
||||
criticalErrorHandler{registerHandlers(router, globalHandlers...)}, getCert)
|
||||
httpServer.BaseContext = func(listener net.Listener) context.Context {
|
||||
return GlobalContext
|
||||
}
|
||||
go func() {
|
||||
globalHTTPServerErrorCh <- httpServer.Start()
|
||||
}()
|
||||
|
|
Loading…
Reference in New Issue