summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorn.christian@seime.no>2018-10-01 15:51:38 +0200
committerGitHub <noreply@github.com>2018-10-01 15:51:38 +0200
commitfbdeff2f6f99f6933615e82eb2779665bed04d12 (patch)
tree37e3ca1d820442df1a5e23fddacfd46705ef135a
parent12b1c47ab133daaa4ac9ade10e8d53473328c3a3 (diff)
parent2552cb1e0f462961539d4d0715b36f19e8df38ef (diff)
Merge pull request #7162 from vespa-engine/gjoranv/remove-invalid-timeout
Remove invalid timeout
-rw-r--r--container-di/src/main/java/com/yahoo/container/di/Container.java10
1 files changed, 4 insertions, 6 deletions
diff --git a/container-di/src/main/java/com/yahoo/container/di/Container.java b/container-di/src/main/java/com/yahoo/container/di/Container.java
index 9389749e610..d3d635eb522 100644
--- a/container-di/src/main/java/com/yahoo/container/di/Container.java
+++ b/container-di/src/main/java/com/yahoo/container/di/Container.java
@@ -94,18 +94,17 @@ public class Container {
return getNewComponentGraph(new ComponentGraph(), Guice.createInjector(), false);
}
- private static String newGraphErrorMessage(long generation, Throwable cause, Duration maxWaitToExit) {
+ private static String newGraphErrorMessage(long generation, Throwable cause) {
String failedFirstMessage = "Failed to set up first component graph";
String failedNewMessage = "Failed to set up new component graph";
String constructMessage = " due to error when constructing one of the components";
- String exitMessage = ". Exiting within " + maxWaitToExit.toString();
String retainMessage = ". Retaining previous component generation.";
if (generation == 0) {
if (cause instanceof ComponentNode.ComponentConstructorException) {
- return failedFirstMessage + constructMessage + exitMessage;
+ return failedFirstMessage + constructMessage;
} else {
- return failedFirstMessage + exitMessage;
+ return failedFirstMessage;
}
} else {
if (cause instanceof ComponentNode.ComponentConstructorException) {
@@ -117,10 +116,9 @@ public class Container {
}
private void invalidateGeneration(long generation, Throwable cause) {
- Duration maxWaitToExit = Duration.ofDays(1);
leastGeneration = Math.max(configurer.getComponentsGeneration(), configurer.getBootstrapGeneration()) + 1;
if (!(cause instanceof InterruptedException) && !(cause instanceof ConfigInterruptedException)) {
- log.log(Level.WARNING, newGraphErrorMessage(generation, cause, maxWaitToExit), cause);
+ log.log(Level.WARNING, newGraphErrorMessage(generation, cause), cause);
}
}