There was an error while loading. Please reload this page.
1 parent 1a8fb64 commit e8de098Copy full SHA for e8de098
1 file changed
packages/@dcl/sdk-commands/src/commands/start/asset-bundles.ts
@@ -8,7 +8,10 @@ import { getPort } from '../../logic/get-free-port'
8
import { b64UrlHashingFunction } from '../../logic/project-files'
9
import { ABGEN_VERSION, resolveAbgenBin } from './abgen-binary'
10
11
-const READY_TIMEOUT_MS = 15_000
+// generous: first boots can be slow to bind (e.g. Windows Defender scanning a
12
+// freshly downloaded binary), and giving up here strands the still-running
13
+// sidecar — it keeps converting and holding the port with no handle to kill it
14
+const READY_TIMEOUT_MS = 60_000
15
const READY_POLL_INTERVAL_MS = 250
16
const READY_REQUEST_TIMEOUT_MS = 2_000
17
const PREWARM_POLL_MS = 2_500
0 commit comments