Skip to content

Commit

Permalink
[JENKINS-19465] - Shutdown the executor service NOW!
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-nenashev committed Dec 12, 2017
1 parent 890a7e6 commit 0a31c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/sshslaves/SSHLauncher.java
Expand Up @@ -880,7 +880,7 @@ public Boolean call() throws InterruptedException {
} finally {
ExecutorService srv = launcherExecutorService;
if (srv != null) {
srv.shutdown();
srv.shutdownNow();
launcherExecutorService = null;
}
}
Expand Down

0 comments on commit 0a31c07

Please sign in to comment.