fix(core): increase default chunk timeout from 2 min to 5 min (#17490)

This commit is contained in:
James Long 2026-03-14 10:27:06 -04:00 committed by GitHub
parent f2d3a4c70f
commit 8c53b2b470
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,7 @@ import { ProviderTransform } from "./transform"
import { Installation } from "../installation"
import { ModelID, ProviderID } from "./schema"
const DEFAULT_CHUNK_TIMEOUT = 120_000
const DEFAULT_CHUNK_TIMEOUT = 300_000
export namespace Provider {
const log = Log.create({ service: "provider" })