aboutsummaryrefslogtreecommitdiffstats
path: root/processing
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@verizonmedia.com>2019-05-07 12:37:41 +0200
committerJon Bratseth <bratseth@verizonmedia.com>2019-05-07 12:37:41 +0200
commit35760016e0f038e5696730d227aea8f6ea3e7139 (patch)
tree2673d3e88468616a8685fef488a0b4ba74aaadfa /processing
parenta2b9e7ec76a39f31890fd854bbd43887e9507675 (diff)
Preserve federation structure in Result on timeout
Diffstat (limited to 'processing')
-rw-r--r--processing/src/main/java/com/yahoo/processing/execution/Execution.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/processing/src/main/java/com/yahoo/processing/execution/Execution.java b/processing/src/main/java/com/yahoo/processing/execution/Execution.java
index 9aff586ef75..ee1e9eb39e4 100644
--- a/processing/src/main/java/com/yahoo/processing/execution/Execution.java
+++ b/processing/src/main/java/com/yahoo/processing/execution/Execution.java
@@ -184,10 +184,7 @@ public class Execution {
}
public String toString() {
- StringBuilder s = new StringBuilder("Execution(");
- s.append(chain.getId());
- s.append(")#").append(hashCode());
- return s.toString();
+ return "execution of chain '" + chain.getId() + "'";
}
public Trace trace() {