@mcp-s/cli 0.0.14 → 0.0.15
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/daemon.js +1 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/daemon.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -1153,6 +1153,7 @@ function isDaemonValid(serverName, config) {
|
|
|
1153
1153
|
debug(`[daemon-client] Process ${pidInfo.pid} not running, cleaning up`);
|
|
1154
1154
|
removePidFile(serverName);
|
|
1155
1155
|
removeSocketFile(serverName);
|
|
1156
|
+
removeReadyFile(serverName);
|
|
1156
1157
|
return false;
|
|
1157
1158
|
}
|
|
1158
1159
|
const currentHash = getConfigHash(config);
|
|
@@ -1163,6 +1164,7 @@ function isDaemonValid(serverName, config) {
|
|
|
1163
1164
|
killProcess(pidInfo.pid);
|
|
1164
1165
|
removePidFile(serverName);
|
|
1165
1166
|
removeSocketFile(serverName);
|
|
1167
|
+
removeReadyFile(serverName);
|
|
1166
1168
|
return false;
|
|
1167
1169
|
}
|
|
1168
1170
|
if (!existsSync3(socketPath)) {
|
|
@@ -1298,7 +1300,7 @@ async function cleanupOrphanedDaemons() {
|
|
|
1298
1300
|
}
|
|
1299
1301
|
|
|
1300
1302
|
// src/version.ts
|
|
1301
|
-
var VERSION = "0.0.
|
|
1303
|
+
var VERSION = "0.0.15";
|
|
1302
1304
|
|
|
1303
1305
|
// src/client.ts
|
|
1304
1306
|
function getRetryConfig(settings) {
|