Skip to content

Commit

Permalink
fix correlation id syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Holloway <[email protected]>
  • Loading branch information
loadtheaccumulator committed Feb 11, 2025
1 parent 01b1c2d commit f6f4970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/clients/pulp/identity.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func addAuthenticationHeader(ctx context.Context, req *http.Request) error {
c := config.Get()

// always add correlation id
req.Header.Add("Correlation-Id", request_id.GetReqID(ctx))
req.Header.Add("Correlation-ID", request_id.GetReqID(ctx))

// add service account header if we are using oauth2 (dev setup)
if c.PulpOauth2URL != "" && c.PulpOauth2ClientID != "" && c.PulpOauth2ClientSecret != "" {
Expand Down

0 comments on commit f6f4970

Please sign in to comment.