summaryrefslogtreecommitdiffstats
path: root/node-repository
diff options
context:
space:
mode:
authorkkraune <kristian@ymail.com>2020-06-30 12:05:07 +0200
committerkkraune <kristian@ymail.com>2020-06-30 12:05:07 +0200
commitb2de6d06c5e0d65152e9f74ebd71efc6c9897e29 (patch)
tree1f0a28daf1432f75dab1138e59f4bb095b49e004 /node-repository
parent2eb570673a17c0c1805743006386f4df8fb0caae (diff)
exclude stream-ranking-rhel7 from periodic maint
Diffstat (limited to 'node-repository')
-rw-r--r--node-repository/src/main/java/com/yahoo/vespa/hosted/provision/maintenance/PeriodicApplicationMaintainer.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/maintenance/PeriodicApplicationMaintainer.java b/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/maintenance/PeriodicApplicationMaintainer.java
index 06ecb1f4a01..3cb0f935888 100644
--- a/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/maintenance/PeriodicApplicationMaintainer.java
+++ b/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/maintenance/PeriodicApplicationMaintainer.java
@@ -71,6 +71,7 @@ public class PeriodicApplicationMaintainer extends ApplicationMaintainer {
private boolean shouldMaintain(ApplicationId id) {
if (id.tenant().value().equals("stream") && id.application().value().equals("stream-ranking")) return false;
if (id.tenant().value().equals("stream") && id.application().value().equals("stream-ranking-canary")) return false;
+ if (id.tenant().value().equals("stream") && id.application().value().equals("stream-ranking-rhel7")) return false;
return true;
}