aboutsummaryrefslogtreecommitdiffstats
path: root/config-provisioning
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2021-10-01 09:38:37 +0200
committerHarald Musum <musum@yahooinc.com>2021-10-01 09:38:37 +0200
commitecf0372911a9e42d6c5422e4b6275d63a8598ef6 (patch)
tree715a4b81706eb587d63d04721e276ebcf314c921 /config-provisioning
parent4d1754c799bc15e1851466f79672db0e77d9aff8 (diff)
Remove default implementation, should always be implemented
Diffstat (limited to 'config-provisioning')
-rw-r--r--config-provisioning/src/main/java/com/yahoo/config/provision/Deployer.java6
1 files changed, 3 insertions, 3 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 20e23edddce..e7d28a3f65b 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
@@ -1,4 +1,4 @@
-// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.provision;
import java.time.Duration;
@@ -68,7 +68,7 @@ public interface Deployer {
/** Whether the deployer is bootstrapping, some users of the deployer will want to hold off with deployments in that case. */
default boolean bootstrapping() { return false; }
- /** Timeout in server, clients can use this to set correct client timeout */
- default Duration serverDeployTimeout() { return Duration.ofMinutes(30); }
+ /** Timeout for deploy in server, clients can use this to set correct client timeout */
+ Duration serverDeployTimeout();
}