@sentio/runtime 3.4.3-rc.2 → 3.4.3-rc.3
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/processor-runner.js
CHANGED
|
@@ -30661,8 +30661,7 @@ if (options.worker > 1 && !isChildProcess) {
|
|
|
30661
30661
|
child.on("exit", (code, signal) => {
|
|
30662
30662
|
childProcesses.delete(childPort);
|
|
30663
30663
|
console.log(`Child process on port ${childPort} exited with code ${code}, signal ${signal ?? "none"}`);
|
|
30664
|
-
|
|
30665
|
-
if (isParentShuttingDown || isNormalShutdown) {
|
|
30664
|
+
if (isParentShuttingDown) {
|
|
30666
30665
|
return;
|
|
30667
30666
|
}
|
|
30668
30667
|
if (restartTimers.has(childPort)) {
|