summaryrefslogtreecommitdiffstats
path: root/vespajlib
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2020-08-25 19:11:26 +0200
committerGitHub <noreply@github.com>2020-08-25 19:11:26 +0200
commit7ce394e72a7d1a1256a4339beb9f36288c4762e5 (patch)
treed72fd1b39a8b853a36622321b41e479f1d902c45 /vespajlib
parent0c7fecf57e821f2b7fc587a16966b84fc2b919fe (diff)
parent7c4ca0a828398bb6c8c456daa05b3f965dad58ad (diff)
Merge pull request #14155 from vespa-engine/bratseth/avoid-manual-zone-noise
Reduce noise
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 eb9b91c812c..b1d6fd99333 100644
--- a/vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java
+++ b/vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java
@@ -74,7 +74,7 @@ public abstract class Maintainer implements Runnable, AutoCloseable {
@Override
public final String toString() { return name(); }
- /** Called once each time this maintenance job should run. Returns whether the maintenance run was succesful */
+ /** Called once each time this maintenance job should run. Returns whether the maintenance run was successful */
protected abstract boolean maintain();
/** Returns the interval at which this job is set to run */