open-agents-ai 0.185.43 → 0.185.44
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -41995,7 +41995,7 @@ print('Converted')
|
|
|
41995
41995
|
if (child.pid)
|
|
41996
41996
|
process.kill(child.pid, 0);
|
|
41997
41997
|
} catch {
|
|
41998
|
-
log(
|
|
41998
|
+
log(`PersonaPlex daemon exited unexpectedly. Check ${LOG_FILE}`);
|
|
41999
41999
|
return null;
|
|
42000
42000
|
}
|
|
42001
42001
|
try {
|
|
@@ -42014,7 +42014,7 @@ print('Converted')
|
|
|
42014
42014
|
if (elapsed % 10 === 0)
|
|
42015
42015
|
log(`Still loading... (${elapsed}s)`);
|
|
42016
42016
|
}
|
|
42017
|
-
log(
|
|
42017
|
+
log(`PersonaPlex daemon failed to start within 120s. Check ${LOG_FILE}`);
|
|
42018
42018
|
return null;
|
|
42019
42019
|
}
|
|
42020
42020
|
function stopPersonaPlex() {
|
package/package.json
CHANGED