From c8b8f3c1b7745d85ea2043af2682feb1d66d8651 Mon Sep 17 00:00:00 2001 From: atye Date: Tue, 28 Apr 2026 19:18:50 -0400 Subject: [PATCH] fix --- cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/main.go b/cmd/main.go index 5d7f4a6..96d23f3 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -80,7 +80,7 @@ func main() { var mp server.MetricsPublisher if googleMeasurementId != "" && googleAPISecret != "" { - mp = metrics.NewGoogleClient(googleMeasurementId, googleAPISecret, httpClient) + mp = metrics.NewGoogleClient(googleMeasurementId, googleAPISecret, &http.Client{Timeout: 5 * time.Second}) } dist, err := fs.Sub(swagger, "static/dist")