fix: relax request timeouts

This commit is contained in:
Adam 2026-01-02 12:19:46 -06:00
commit 1d2d710fce
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
3 changed files with 1 additions and 3 deletions

View file

@ -100,7 +100,7 @@ export const { use: useServer, provider: ServerProvider } = createSimpleContext(
const sdk = createOpencodeClient({
baseUrl: url,
fetch: platform.fetch,
signal: AbortSignal.timeout(2000),
signal: AbortSignal.timeout(3000),
})
return sdk.global
.health()