You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When pressing ctrl+c / ctrl+shift+c in the terminal, the application receives a keyboard interrupt. Most applications stop on the first or second time they receive that signal, but the validator just prints a stacktrace and caries on. Instead, the validator should abort on the first keyboard interrupt
The text was updated successfully, but these errors were encountered:
FYI this isn't specific to the validator but seems to be happening with python programs using liboparl, so it seems to be more of a liboparl than a validator bug.
There's issues with breaking out of the threads now.
These should be mitigatable by actually using some sort
of thread pool and listening to the SIGABRT/SIGKILL signals,
then we could "force-join" the running threads.
When pressing ctrl+c / ctrl+shift+c in the terminal, the application receives a keyboard interrupt. Most applications stop on the first or second time they receive that signal, but the validator just prints a stacktrace and caries on. Instead, the validator should abort on the first keyboard interrupt
The text was updated successfully, but these errors were encountered: