We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8ed045 commit 8943d91Copy full SHA for 8943d91
cmd/gateway/endpoint_picker.go
@@ -32,7 +32,7 @@ type extProcClientFactory func(target string) (extprocv3.ExternalProcessorClient
32
// endpointPickerServer starts an HTTP server on the given port with the provided handler.
33
func endpointPickerServer(handler http.Handler) error {
34
server := &http.Server{
35
- Addr: fmt.Sprintf(":%d", defaultPort),
+ Addr: fmt.Sprintf("127.0.0.1:%d", defaultPort),
36
Handler: handler,
37
ReadHeaderTimeout: 10 * time.Second,
38
}
0 commit comments