@devness/useai 0.5.8 → 0.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -723,7 +723,7 @@ async function ensureDaemon() {
|
|
|
723
723
|
});
|
|
724
724
|
child.unref();
|
|
725
725
|
const start = Date.now();
|
|
726
|
-
while (Date.now() - start <
|
|
726
|
+
while (Date.now() - start < 6e4) {
|
|
727
727
|
await new Promise((r) => setTimeout(r, 500));
|
|
728
728
|
if (await checkDaemonHealth())
|
|
729
729
|
return true;
|