summaryrefslogtreecommitdiffstats
path: root/vespajlib
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-05-23 16:25:48 +0200
committerjonmv <venstad@gmail.com>2022-05-23 18:26:58 +0200
commit8c82929ad115bf8763f2ac01286730c2f84d98a0 (patch)
tree53b9a3256c3382897aaf8e31d5a7252a85f174ed /vespajlib
parent9fbd1a3c7ce9b4bc15ff80871fb983fcde302147 (diff)
Fetch and merge tester Vespa log with Vespa log for system and staging tests
Diffstat (limited to 'vespajlib')
-rw-r--r--vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java b/vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java
index 1edf8e4edbe..b038106843e 100644
--- a/vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java
+++ b/vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java
@@ -46,7 +46,7 @@ public abstract class Maintainer implements Runnable {
Objects.requireNonNull(startedAt);
Objects.requireNonNull(clusterHostnames);
Duration initialDelay = staggeredDelay(interval, startedAt, HostName.getLocalhost(), clusterHostnames)
- .plus(Duration.ofSeconds(30)); // Let the system stabilize before maintenance
+ .plus(Duration.ofSeconds(30)); // Let the system stabilize before maintenance
service = new ScheduledThreadPoolExecutor(1, r -> new Thread(r, name() + "-worker"));
service.scheduleAtFixedRate(this, initialDelay.toMillis(), interval.toMillis(), TimeUnit.MILLISECONDS);
jobControl.started(name(), this);