build(cf-package): widen SESSION_STORE_EXPIRY to 4 hours#5372
Merged
norman-abramovitz merged 1 commit intoMay 24, 2026
Merged
Conversation
Default jetstream session expiry is 20 minutes (main.go:74), which makes long Playwright MCP sessions against adepttech painful — the session cookie expires before a multi-ticket verification pass finishes, forcing a re-login mid-run. Wire SESSION_STORE_EXPIRY=240 (4 hours) into the cf-package manifest heredoc so it carries forward every `make deploy cf` and adepttech deploys come up with a session window long enough to drive a re-test session without auth interruptions. The env var is read at src/jetstream/main.go:239 with a 20-minute fallback when unset, so this only widens the window — no other behavior change.
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
build/release-cf.shheredoc gainsSESSION_STORE_EXPIRY: "240"(minutes) under the cf-package manifest'senv:block.src/jetstream/main.go:74), read at line 239 with the same default when the env var is unset.make release cfcarries the new env var.Test plan
make build release cfand inspectdist/cf-package/manifest.ymlfor the new line underenv:make deploy cfto a test foundation and verify withcf env console | grep SESSION_STORE_EXPIRYRelated