From 80b8e29370725b78fb1e02a64cb00abd63982c0d Mon Sep 17 00:00:00 2001 From: Trajan0x Date: Wed, 17 Jul 2024 13:55:57 -0400 Subject: [PATCH] [goreleaser] fix https://github.com/synapsecns/sanguine/pull/2882#discussion_r1681471161 --- core/metrics/otlp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/metrics/otlp.go b/core/metrics/otlp.go index 9db1c57a68..1057be5ea7 100644 --- a/core/metrics/otlp.go +++ b/core/metrics/otlp.go @@ -71,7 +71,7 @@ func handleShutdown(ctx context.Context, provider *tracesdk.TracerProvider) { const shutdownAllowance = time.Second * 10 // allow only 10 seconds for graceful shutdown. - // we use without cancel to copy the parents values while making sure are derived context is not canceled. + // we use without cancel to copy the parents values while making sure our derived context is not canceled. shutdownCtx, cancel := context.WithTimeout(context.WithoutCancel(ctx), shutdownAllowance) defer cancel()