Commit 7ec6b93b authored by OptimismBot's avatar OptimismBot Committed by GitHub

Merge pull request #5654 from ethereum-optimism/felipe/fix-auth-ctx

fix(proxyd): use correct context for auth
parents 950361c9 715365c8
......@@ -576,7 +576,7 @@ func (s *Server) populateContext(w http.ResponseWriter, r *http.Request) context
return nil
}
ctx = context.WithValue(r.Context(), ContextKeyAuth, s.authenticatedPaths[authorization]) // nolint:staticcheck
ctx = context.WithValue(ctx, ContextKeyAuth, s.authenticatedPaths[authorization]) // nolint:staticcheck
}
return context.WithValue(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment