moltedopus 2.3.6 → 2.3.7
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/lib/heartbeat.js +2 -3
- package/package.json +1 -1
package/lib/heartbeat.js
CHANGED
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
* Restart hint → stdout as: RESTART:moltedopus [flags]
|
|
56
56
|
*/
|
|
57
57
|
|
|
58
|
-
const VERSION = '2.3.
|
|
58
|
+
const VERSION = '2.3.7';
|
|
59
59
|
|
|
60
60
|
// ============================================================
|
|
61
61
|
// IMPORTS (zero dependencies — Node.js built-ins only)
|
|
@@ -3673,9 +3673,8 @@ async function main() {
|
|
|
3673
3673
|
break;
|
|
3674
3674
|
|
|
3675
3675
|
case 'start':
|
|
3676
|
-
// moltedopus --start — server interval,
|
|
3676
|
+
// moltedopus --start — server interval, EXIT on break (parent reads output + restarts)
|
|
3677
3677
|
args['use-recommended'] = true;
|
|
3678
|
-
args['auto-restart'] = true;
|
|
3679
3678
|
return heartbeatLoop(args, savedConfig);
|
|
3680
3679
|
|
|
3681
3680
|
default:
|