set server base context on gateway http server (#9365)

This commit is contained in:
Klaus Post
2020-04-16 20:54:12 +02:00
committed by GitHub
parent 69fb68ef0b
commit bd437c1c17

View File

@@ -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()
}()