diff --git a/internal/common/profiling/http.go b/internal/common/profiling/http.go index cea7021bc13..b691ad16893 100644 --- a/internal/common/profiling/http.go +++ b/internal/common/profiling/http.go @@ -79,7 +79,7 @@ func setupPprofHttpServerWithAuth(port uint16, authFunc func(w http.ResponseWrit } return &http.Server{ - Addr: fmt.Sprintf("localhost:%d", port), + Addr: fmt.Sprintf(":%d", port), Handler: authInterceptor, } }