improvement(function): timeout increase to 5 min#3040
Merged
icecrasher321 merged 1 commit intostagingfrom Jan 28, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile OverviewGreptile SummaryThis PR increases the fetch timeout within the isolated VM worker from 30 seconds to 5 minutes. This change allows user code executing in the isolated VM to make longer-running HTTP requests without timing out. Key Changes:
Context: Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Parent as Parent Process<br/>(isolated-vm.ts)
participant Worker as Worker Process<br/>(isolated-vm-worker.cjs)
participant IVM as Isolated VM Context
participant UserCode as User Code
Parent->>Worker: execute request (timeoutMs)
activate Worker
Note over Parent: Parent timeout = timeoutMs + 1s
Worker->>IVM: Create isolate & context
Worker->>IVM: Inject fetch callback
IVM->>UserCode: Run user code (timeoutMs)
activate UserCode
UserCode->>IVM: Call fetch(url, options)
IVM->>Worker: __fetchRef callback
Worker->>Parent: IPC fetch request
Note over Worker: FETCH_TIMEOUT_MS = 5 min
Parent->>Parent: secureFetch (validate URL)
Parent->>Parent: Execute fetch
Parent-->>Worker: IPC fetch response
Worker-->>IVM: Resolve fetch promise
IVM-->>UserCode: Return response
alt Fetch times out (> 5 min)
Worker-->>IVM: Timeout error
IVM-->>UserCode: Throw error
end
UserCode-->>IVM: Return result
deactivate UserCode
IVM-->>Worker: Execution complete
Worker-->>Parent: IPC result
deactivate Worker
|
This was referenced Jan 30, 2026
Closed
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
Increase isolated worker timeout to 5 min.
Type of Change
Testing
Tested manually
Checklist