From 2ab7e3ee4399a4f5bc208408611309cbf1ff277d Mon Sep 17 00:00:00 2001 From: David Ashpole Date: Mon, 23 Sep 2024 13:34:58 +0000 Subject: [PATCH] apply feedback --- instrumentation/net/http/otelhttp/start_time_context.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/instrumentation/net/http/otelhttp/start_time_context.go b/instrumentation/net/http/otelhttp/start_time_context.go index 19631bff4c2..9476ef01b01 100644 --- a/instrumentation/net/http/otelhttp/start_time_context.go +++ b/instrumentation/net/http/otelhttp/start_time_context.go @@ -27,5 +27,3 @@ func StartTimeFromContext(ctx context.Context) time.Time { t, _ := ctx.Value(startTimeContextKey).(time.Time) return t } - -var zeroTime time.Time