mirror of
https://github.com/stablyai/orca.git
synced 2026-09-23 08:02:31 +00:00
10 lines
456 B
TypeScript
10 lines
456 B
TypeScript
/**
|
|
* How long the runtime waits for a client host to answer one page-creation command, and the ceiling
|
|
* a caller may raise that to.
|
|
*
|
|
* Shared rather than private to the runtime because the renderer's own waits are only meaningful
|
|
* relative to it: a UI bound shorter than one creation attempt calls healthy recoveries dead.
|
|
*/
|
|
export const DEFAULT_CLIENT_PAGE_CREATION_TIMEOUT_MS = 30_000
|
|
export const MAX_CLIENT_PAGE_CREATION_TIMEOUT_MS = 60_000
|