Skip to content

Commit

Permalink
include docker exeception cause in thread checker
Browse files Browse the repository at this point in the history
  • Loading branch information
ssalinas committed Feb 22, 2016
1 parent 36b77a6 commit 333d634
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private int getNumUsedThreads(SingularityExecutorTaskProcessCallable taskProcess
dockerPid = Optional.of(possiblePid);
}
} catch (DockerException e) {
throw new ProcessFailedException(String.format("Could not get docker root pid due to error: %s", e));
throw new ProcessFailedException("Could not get docker root pid due to error", e);
}
}

Expand Down

0 comments on commit 333d634

Please # to comment.