mirror of https://github.com/apache/jclouds.git
fixed exception string on runscript
This commit is contained in:
parent
239519c8ca
commit
0d9a1931f3
|
@ -46,7 +46,7 @@ public class RunScriptOnNodesException extends Exception {
|
||||||
@Nullable final RunScriptOptions options,
|
@Nullable final RunScriptOptions options,
|
||||||
Map<NodeMetadata, ExecResponse> successfulNodes, Map<?, Exception> executionExceptions,
|
Map<NodeMetadata, ExecResponse> successfulNodes, Map<?, Exception> executionExceptions,
|
||||||
Map<? extends NodeMetadata, ? extends Throwable> failedNodes) {
|
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
|
options, ComputeUtils.createExecutionErrorMessage(executionExceptions), ComputeUtils
|
||||||
.createNodeErrorMessage(failedNodes)));
|
.createNodeErrorMessage(failedNodes)));
|
||||||
this.tag = tag;
|
this.tag = tag;
|
||||||
|
|
Loading…
Reference in New Issue