Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
results: do not treat exit codes above 192 as fatal
Real-time signals are in the range 32..64 and regular signals below that range. If an exit code is above `128 + 64 = 192`, it does not denote a terminating signal. When Snyk code crashes, it returns exit code 255, which should not be handled as termination by a signal: ``` !!! 2023-10-20 13:12:09 fatal error: caught signal 127 ``` Related: https://issues.redhat.com/browse/OSH-368 Closes: csutils#135
- Loading branch information