@agent-relay/dashboard-server 2.0.54 → 2.0.55
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/server.js +5 -1
- package/dist/server.js.map +1 -1
- package/dist/services/health-worker-manager.d.ts.map +1 -1
- package/dist/services/health-worker-manager.js +7 -0
- package/dist/services/health-worker-manager.js.map +1 -1
- package/out/404.html +1 -1
- package/out/about.html +1 -1
- package/out/about.txt +1 -1
- package/out/app/onboarding.html +1 -1
- package/out/app/onboarding.txt +1 -1
- package/out/app.html +1 -1
- package/out/app.txt +1 -1
- package/out/blog/go-to-bed-wake-up-to-a-finished-product.html +1 -1
- package/out/blog/go-to-bed-wake-up-to-a-finished-product.txt +1 -1
- package/out/blog.html +1 -1
- package/out/blog.txt +1 -1
- package/out/careers.html +1 -1
- package/out/careers.txt +1 -1
- package/out/changelog.html +1 -1
- package/out/changelog.txt +1 -1
- package/out/cloud/link.html +1 -1
- package/out/cloud/link.txt +1 -1
- package/out/complete-profile.html +1 -1
- package/out/complete-profile.txt +1 -1
- package/out/connect-repos.html +1 -1
- package/out/connect-repos.txt +1 -1
- package/out/contact.html +1 -1
- package/out/contact.txt +1 -1
- package/out/docs.html +1 -1
- package/out/docs.txt +1 -1
- package/out/history.html +1 -1
- package/out/history.txt +1 -1
- package/out/index.html +1 -1
- package/out/index.txt +1 -1
- package/out/login.html +1 -1
- package/out/login.txt +1 -1
- package/out/metrics.html +1 -1
- package/out/metrics.txt +1 -1
- package/out/pricing.html +1 -1
- package/out/pricing.txt +1 -1
- package/out/privacy.html +1 -1
- package/out/privacy.txt +1 -1
- package/out/providers/setup/claude.html +1 -1
- package/out/providers/setup/claude.txt +1 -1
- package/out/providers/setup/codex.html +1 -1
- package/out/providers/setup/codex.txt +1 -1
- package/out/providers/setup/cursor.html +1 -1
- package/out/providers/setup/cursor.txt +1 -1
- package/out/providers.html +1 -1
- package/out/providers.txt +1 -1
- package/out/security.html +1 -1
- package/out/security.txt +1 -1
- package/out/signup.html +1 -1
- package/out/signup.txt +1 -1
- package/out/terms.html +1 -1
- package/out/terms.txt +1 -1
- package/package.json +1 -1
- /package/out/_next/static/{hEvfgf_ePmkXdWI79g-aH → 8-p7CupbYTtfbfLLUaFAr}/_buildManifest.js +0 -0
- /package/out/_next/static/{hEvfgf_ePmkXdWI79g-aH → 8-p7CupbYTtfbfLLUaFAr}/_ssgManifest.js +0 -0
package/dist/server.js
CHANGED
|
@@ -5521,7 +5521,11 @@ Start by greeting the project leads and asking for status updates.`;
|
|
|
5521
5521
|
console.log(`Health check worker running at http://localhost:${healthPort}/health`);
|
|
5522
5522
|
}
|
|
5523
5523
|
catch (err) {
|
|
5524
|
-
|
|
5524
|
+
// Worker threads don't work in bundled binaries - this is expected
|
|
5525
|
+
const isBundledError = err instanceof Error && err.message.includes('bundled binary');
|
|
5526
|
+
if (!isBundledError) {
|
|
5527
|
+
console.warn('[dashboard] Failed to start health worker, using main thread health check:', err);
|
|
5528
|
+
}
|
|
5525
5529
|
}
|
|
5526
5530
|
resolve(availablePort);
|
|
5527
5531
|
};
|