aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2023-09-06 09:31:56 +0200
committerjonmv <venstad@gmail.com>2023-09-06 09:31:56 +0200
commit1dc35415406440a2051ba56458bc30787573024e (patch)
tree71527900d6f6454405aa6fb5d7ba8d9353d96fd2 /controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java
parent629b6f51733b3870ca4ccb4b7840b0a8718d6f41 (diff)
Include message about builds being skipped when equal to the previous
Diffstat (limited to 'controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java
index 7303320a4f7..058d3c8fb07 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationVersion.java
@@ -169,12 +169,12 @@ public class ApplicationVersion implements Comparable<ApplicationVersion> {
return new ApplicationVersion(id, source, authorEmail, compileVersion, allowedMajor, buildTime, sourceUrl, commit, bundleHash, obsoleteAt, hasPackage, true, description, submittedAt, risk);
}
- /** Whether we still have the package for this revision. */
+ /** Whether we have chosen to skip this version. */
public boolean shouldSkip() {
return shouldSkip;
}
- /** Whether this revision should be deployed. */
+ /** Whether this revision can be deployed. */
public boolean isDeployable() {
return hasPackage && ! shouldSkip;
}