fix(codex): hot-reload quota model exclusions - #2016
Draft
wangmou20 wants to merge 1 commit into
Draft
Conversation
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.
Summary
StartRuntimeProblem
When Spark quota recovered, Cockpit refreshed the account quota but left the old
excluded_modelsrouting state in the running sidecar. Spark workers then continued receiving503 auth_not_found: no auth availableuntil the sidecar account set was manually reloaded. The embeddedStartRuntimepath also did not start the auth watcher.Design
quota-reserve.jsonnow carries an authoritativemodelExclusionsarray for every effective account. Explicit[]means allowed; missing/null state fails closed when a runtime-state path is configured. Rust quota refreshes update this state atomically and do not rewrite auth JSON for model-exclusion changes.If any effective account snapshot is missing or unreadable, all effective accounts receive
*; only a later complete snapshot may remove that temporary block. Go reloads only accounts whose exclusion semantics changed, and uses a preserving registry reconciliation so a Spark policy change does not clear Luna/Terra cooldowns.Verification
internal/registry,sdk/auth,sdk/cliproxy,sdk/cliproxy/auth, andinternal/watcherall passsdk/authcross-compilation passescargo check -p cockpit-tools --testspassesgit diff --checkandgofmt -dare cleanKnown unrelated local baseline failures remain outside this patch:
TestAuthHookEmitsRequestScopedResultDiagnosticsin the sidecar main package, plus Antigravity Claude signature tests when the local signature cache is disabled. Rust test linking is unavailable on this host because GTK/WebKit development libraries are not installed; test code is covered bycargo check --tests.No production sidecar was replaced or restarted for this PR.