Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/middleware/metadatahandler/metadatahandler.go')
-rw-r--r--internal/middleware/metadatahandler/metadatahandler.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/middleware/metadatahandler/metadatahandler.go b/internal/middleware/metadatahandler/metadatahandler.go
index 5a8d6ba90..5091e6654 100644
--- a/internal/middleware/metadatahandler/metadatahandler.go
+++ b/internal/middleware/metadatahandler/metadatahandler.go
@@ -42,7 +42,7 @@ const ClientNameKey = "grpc.meta.client_name"
// AuthVersionKey is the key used in ctx_tags to store the auth version
const AuthVersionKey = "grpc.meta.auth_version"
-const correlationIdKey = "correlation_id"
+const correlationIDKey = "correlation_id"
// Unknown client and feature. Matches the prometheus grpc unknown value
const unknownValue = "unknown"
@@ -94,7 +94,7 @@ func addMetadataTags(ctx context.Context) metadataTags {
// This is a stop-gap approach to logging correlation_ids
correlationID := correlation.ExtractFromContext(ctx)
if correlationID != "" {
- tags.Set(correlationIdKey, correlationID)
+ tags.Set(correlationIDKey, correlationID)
}
return metaTags