Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(event_analyzer): call 'kill_test' only once
We may get flooded with the CRITICAL events and each of them will trigger call of "kill_test" method where we send SIGUSR2 signal to python main thread. At first, we should call this method only once. At second, we will fall into endless loop of failures where we catch following old python bug: https://bugs.python.org/issue24283 So, run "kill_test" method only once to avoid endless failure loop.
- Loading branch information