fixed exception string on runscript

This commit is contained in:
Adrian Cole 2010-05-04 15:07:20 -07:00
parent 239519c8ca
commit 0d9a1931f3
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ public class RunScriptOnNodesException extends Exception {
@Nullable final RunScriptOptions options,
Map<NodeMetadata, ExecResponse> successfulNodes, Map<?, Exception> executionExceptions,
Map<? extends NodeMetadata, ? extends Throwable> failedNodes) {
super(String.format("error runScript on node tag(%s) options(%s) exceptions: %s", tag,
super(String.format("error runScript on node tag(%s) options(%s)%n%s%n%s", tag,
options, ComputeUtils.createExecutionErrorMessage(executionExceptions), ComputeUtils
.createNodeErrorMessage(failedNodes)));
this.tag = tag;