@codemap-ai/cli 0.1.5 → 0.1.6
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 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8997,7 +8997,8 @@ async function is9RouterRunning() {
|
|
|
8997
8997
|
signal: AbortSignal.timeout(2e3)
|
|
8998
8998
|
});
|
|
8999
8999
|
return true;
|
|
9000
|
-
} catch {
|
|
9000
|
+
} catch (err) {
|
|
9001
|
+
console.log(` [debug] 9router not reachable at http://localhost:${NINE_ROUTER_LOCAL_PORT}: ${err instanceof Error ? err.message : String(err)}`);
|
|
9001
9002
|
return false;
|
|
9002
9003
|
}
|
|
9003
9004
|
}
|