@sentio/runtime 3.4.3-rc.1 → 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.
@@ -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
- const isNormalShutdown = signal === null && code === 0;
30665
- if (isParentShuttingDown || isNormalShutdown) {
30664
+ if (isParentShuttingDown) {
30666
30665
  return;
30667
30666
  }
30668
30667
  if (restartTimers.has(childPort)) {