Increase worker init timeout from 20s to 30s

This commit is contained in:
evanpelle
2026-05-04 15:04:23 -06:00
parent 94205426e7
commit 900d7f0bd0
+1 -1
View File
@@ -148,7 +148,7 @@ export class WorkerClient {
this.messageHandlers.delete(messageId);
reject(new Error("Worker initialization timeout"));
}
}, 20000);
}, 30000);
});
}