[rmcp-client] Reread persisted OAuth credentials before refresh#29020
Closed
stevenlee-oai wants to merge 8 commits into
Closed
Conversation
This was referenced Jun 19, 2026
Contributor
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 3817102633
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
3817102 to
f7e19d4
Compare
251a6b8 to
69a7bec
Compare
f7e19d4 to
0857761
Compare
69a7bec to
fc09471
Compare
0857761 to
2316f9d
Compare
fc09471 to
80b1dd7
Compare
9b9cf8d to
1725fd0
Compare
bf747a3 to
7d11960
Compare
7d11960 to
61a6e45
Compare
1725fd0 to
20c28a3
Compare
20c28a3 to
cce79ee
Compare
This was referenced Jun 25, 2026
cce79ee to
8b83b05
Compare
09c6d6f to
a727719
Compare
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Codex Thread 019edd6d-6f14-74e2-853c-345d1803d4a6
Important
This PR belongs to the superseded MCP OAuth stack. Please review and merge the replacement stack beginning with openai/codex#30292. This PR remains available only as historical/reference context.
Replacement review order:
This is part 2 of an eight-PR stack that prevents concurrent MCP OAuth refreshers from replaying a rotating refresh token or overwriting newer credentials.
Review order
Why this layer exists
Serialization alone is insufficient if a waiter decides from credentials it read before acquiring the lock. The first process may already have rotated A to B. A later waiter must reread the selected durable store after it owns the transaction and adopt B instead of sending A to the provider again.
What changes
Autostore.Decisions reviewers should preserve across the stack
Autoresolution is lifecycle-local and not durably persisted. Once resolved, the client never hot-switches stores.RmcpClient; RMCP-owned response/GET/DELETE recovery lives in the transport wrapper.Review focus
Review the ordering: acquire transaction lock, reread the already-resolved store, adopt/clear/refresh, then persist before release. This PR does not change login/logout yet.
Non-goals
Autoselection, cross-CODEX_HOMEkeyring coordination, or backend migration.Validation
just test -p codex-rmcp-client: 100 passed, 5 skipped.