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
This cause threads to be blocked until the process dies. Or it is necessary to call several time interrupt with some delay in order to really cause the thread to be interrupted.
The text was updated successfully, but these errors were encountered:
Would you be willing to send a pull request?
(Sorry for the long delay, I'm taking over maintenance of this project so communication should be faster from now on)
StreamPumper threads are not interrupted when main thread is interrupted.
This piece of code seems to miss an outputThread.interrupt().
if (outputThread != null) { log.trace("Joining output thread {}...", outputThread); try { outputThread.join(); outputThread = null; } catch (InterruptedException e) { // ignore } }
This cause threads to be blocked until the process dies. Or it is necessary to call several time interrupt with some delay in order to really cause the thread to be interrupted.
The text was updated successfully, but these errors were encountered: