Node exited after sleep as web sockets gets disconnected at sleep, and our orphan exit timer will inccorectly determine that too much time has passed including the time the app was asleep and terminated node.
We dont need orpahn exit timers anymore as node is terminated oon stdio disconnect, which is a much more reliable way to detect process exit. We did not remove this code at node connector as it maybe a miss during the algo change?
Fixes https://github.com/phcode-dev/phoenix/issues/1791
Node exited after sleep as web sockets gets disconnected at sleep, and our orphan exit timer will inccorectly determine that too much time has passed including the time the app was asleep and terminated node.
We dont need orpahn exit timers anymore as node is terminated oon stdio disconnect, which is a much more reliable way to detect process exit. We did not remove this code at node connector as it maybe a miss during the algo change?