NoMethod error in fork_supervisor upon terminating processes #305
Closed
Description
Since we upgraded to 0.6.0 our error reporting system started producing:
Undefined method `>' for nil (NoMethodError)
if (terminated_fork = forks.delete(pid)) && !status.exited? || status.exitstatus > 0
The code was introduced in #277
I suppose the code is meant to be
if (terminated_fork = forks.delete(pid)) && (!status.exited? || status.exitstatus > 0)
Metadata
Assignees
Labels
No labels