Increase worker initailization timeout from 5=>20s to prevent worker timeout, add duration logging to some longer operations

This commit is contained in:
evanpelle
2026-01-19 19:26:09 -08:00
parent 9d0ae10912
commit 697a346c86
3 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ export class WorkerClient {
this.messageHandlers.delete(messageId);
reject(new Error("Worker initialization timeout"));
}
}, 5000); // 5 second timeout
}, 20000); // 20 second timeout
});
}