fix(sunset): gate sunset mode on cloud deployment and keep PATs working through the wind-down - #1815
Merged
AnishSarkar22 merged 3 commits intoSep 20, 2026
Conversation
|
@AnishSarkar22 is attempting to deploy a commit to the Rohan Verma's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
Note Currently processing new changes in this PR. This may take a few minutes, please wait... ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Advanced Run ID: 📒 Files selected for processing (8)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Reminting secret.bin leaves every stored provider key undecryptable. Fernet raised InvalidToken out of the api_key property, so model discovery 500'd and the boot gate, which resolves the selected model through that connection, left the window stuck on "SurfSense could not start". Drop the dead ciphertext and report no key, so the app boots and asks for it again.
… instances can never be sunset-blocked
…ng the "PATs survive until T+30" contract
AnishSarkar22
force-pushed
the
hotpatch/sunset-mode
branch
from
September 20, 2026 12:39
8ea4ae7 to
774ae8a
Compare
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.
What
SUNSET_MODEonDEPLOYMENT_MODE=cloud— self-hosted instances can never be sunset-blocked, even ifSUNSET_MODEis set by accident; also fixesDEPLOYMENT_MODEreading a never-setSURFSENSE_DEPLOYMENT_MODEenv var that silently defaulted toself-hosted./api/v1/pats(create/revoke API keys) working under sunset mode — PATs are supposed to survive until the T+30 purge, not die at T-0, fixing cloud users hitting410 Gonewhen managing API keys during the wind-down.Why
Fixes #1814
How to test