aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2021-12-03 15:21:12 +0100
committerMartin Polden <mpolden@mpolden.no>2021-12-03 15:21:12 +0100
commit53ec2654fb79a7df043f3deed32dc870aaf97993 (patch)
tree59505cff76d1ca33756d620b08f229ec4f4224db
parent2b44ace413c60b8124d767f46092d961651e0cb5 (diff)
Update stale javadoc
Deployments are no longer bound to a single config server.
-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);