With a process that's died, we end up seeing zombies that angel hasn't reaped:
$ ps aux | grep my-program
... [my-program] <defunct>
... [my-program] <defunct>
... [my-program] <defunct>
... [my-program] <defunct>
Angel seems to successfully be attempting to restart the process (recognizing it's dead and respawning), after the delay period, which is good, but it leaves these defunct processes around. Shouldn't it "reap" them?
(The processes have a termgrace = 10 set)
With a process that's died, we end up seeing zombies that angel hasn't reaped:
Angel seems to successfully be attempting to restart the process (recognizing it's dead and respawning), after the delay period, which is good, but it leaves these defunct processes around. Shouldn't it "reap" them?
(The processes have a
termgrace = 10set)