Fix Slack OAuth refresh recovery after lost responses - #236
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Codex review
|
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
expires_inby elapsed time so clients retain the provider's real expiryWhy
Slack refresh tokens are single-use. Previously, if Slack accepted a rotation but the response was lost between the broker and Locality, the replacement pair was never saved and every retry reused the consumed token. The broker then surfaced an unrecoverable 502 and required reconnection.
Tests
npm run checkinapps/oauth-service(37 tests)npx wrangler deploy --dry-run --outdir /tmp/locality-slack-refresh-worker-build-finalcargo fmt --all -- --checkcargo test -p locality-slackcargo test -p localityd --test source_descriptor slack -- --test-threads=1git diff --checkExisting unrelated checks
cargo clippy -p locality-slack --all-targets -- -D warningsremains blocked by pre-existing Clippy warnings inlocality-coreand existing Slack hosted/settings files. A full unfilteredsource_descriptorrun also hit existing Google Docs failures and a stopped-broker timeout; all Slack-filtered cases pass.