[packages/sandbox] improve timeout values and hour format#150
Merged
marc-vercel merged 1 commit intomainfrom Apr 16, 2026
Merged
[packages/sandbox] improve timeout values and hour format#150marc-vercel merged 1 commit intomainfrom
marc-vercel merged 1 commit intomainfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
AndyW22
approved these changes
Apr 16, 2026
marc-vercel
added a commit
that referenced
this pull request
Apr 17, 2026
Fix the timeout examples so that we do not introduce `1h` because it exceeds hobby limits. Now the example is just `5m` or `30m`. Also, fix how we show the timeout. Before, we rounded the timeout to the closes unit (in his case 1 hour): ``` ❯ sandbox list ID STATUS CREATED MEMORY VCPUS RUNTIME TIMEOUT SNAPSHOT sbx_MGhwG22sB5zWNiPtGcvDsUUeN7GY running 6 minutes ago 4,096 MB 2 node24 in 1 hour - sbx_tk00HLr2SZvXzjcXT24wJ4zshsCY running 8 minutes ago 4,096 MB 2 node24 in 1 hour - ``` Now, we show the exact timeout value: ``` ❯ sandbox list ID STATUS CREATED MEMORY VCPUS RUNTIME TIMEOUT SNAPSHOT sbx_MGhwG22sB5zWNiPtGcvDsUUeN7GY running 7 minutes ago 4,096 MB 2 node24 in 53 minutes - sbx_tk00HLr2SZvXzjcXT24wJ4zshsCY running 8 minutes ago 4,096 MB 2 node24 in 52 minutes - ```
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.
Fix the timeout examples so that we do not introduce
1hbecause it exceeds hobby limits. Now the example is just5mor30m.Also, fix how we show the timeout. Before, we rounded the timeout to the closes unit (in his case 1 hour):
Now, we show the exact timeout value: