aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2021-12-06 07:27:27 +0100
committerGitHub <noreply@github.com>2021-12-06 07:27:27 +0100
commitfa63f735ff37b87842e41155fca702da24e5d88e (patch)
treecd90b92ae84340961aff50d68bd490aa0787fa7f
parente69ad799a335618eaf098bcdaab15f16220c78af (diff)
parent53ec2654fb79a7df043f3deed32dc870aaf97993 (diff)
Merge pull request #20357 from vespa-engine/mpolden/update-doc
Update stale javadoc
-rw-r--r--config-provisioning/src/main/java/com/yahoo/config/provision/Deployer.java16
1 files changed, 4 insertions, 12 deletions
diff --git a/config-provisioning/src/main/java/com/yahoo/config/provision/Deployer.java b/config-provisioning/src/main/java/com/yahoo/config/provision/Deployer.java
index e7d28a3f65b..209f339f51f 100644
--- a/config-provisioning/src/main/java/com/yahoo/config/provision/Deployer.java
+++ b/config-provisioning/src/main/java/com/yahoo/config/provision/Deployer.java
@@ -16,9 +16,7 @@ public interface Deployer {
* Creates a new deployment from the active application, if available. Will use the default timeout for deployment.
*
* @param application the active application to be redeployed
- * @return a new deployment from the local active, or empty if a local active application
- * was not present for this id (meaning it either is not active or deployed at another
- * node in the config server cluster)
+ * @return a new deployment from the active application, or empty if application does not exist
*/
default Optional<Deployment> deployFromLocalActive(ApplicationId application) {
return deployFromLocalActive(application, false);
@@ -29,9 +27,7 @@ public interface Deployer {
*
* @param application the active application to be redeployed
* @param bootstrap the deployment is done when bootstrapping
- * @return a new deployment from the local active, or empty if a local active application
- * was not present for this id (meaning it either is not active or deployed at another
- * node in the config server cluster)
+ * @return a new deployment from the active application, or empty if application does not exist
*/
Optional<Deployment> deployFromLocalActive(ApplicationId application, boolean bootstrap);
@@ -41,9 +37,7 @@ public interface Deployer {
*
* @param application the active application to be redeployed
* @param timeout the timeout to use for each individual deployment operation
- * @return a new deployment from the local active, or empty if a local active application
- * was not present for this id (meaning it either is not active or active on another
- * node in the config server cluster)
+ * @return a new deployment from the active application, or empty if application does not exist
*/
default Optional<Deployment> deployFromLocalActive(ApplicationId application, Duration timeout) {
return deployFromLocalActive(application, timeout, false);
@@ -56,9 +50,7 @@ public interface Deployer {
* @param application the active application to be redeployed
* @param timeout the timeout to use for each individual deployment operation
* @param bootstrap the deployment is done when bootstrapping
- * @return a new deployment from the local active, or empty if a local active application
- * was not present for this id (meaning it either is not active or active on another
- * node in the config server cluster)
+ * @return a new deployment from the active application, or empty if application does not exist
*/
Optional<Deployment> deployFromLocalActive(ApplicationId application, Duration timeout, boolean bootstrap);