aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/AbstractService.java
diff options
context:
space:
mode:
authorArne Juul <arnej@yahoo-inc.com>2019-03-14 19:15:09 +0000
committerArne Juul <arnej@yahoo-inc.com>2019-03-14 19:15:09 +0000
commit33bb16aa777b63646f7577be48d6b7994eb880de (patch)
treed41f2701119d0431a79e84ea1e5887bebf126476 /config-model/src/main/java/com/yahoo/vespa/model/AbstractService.java
parentff201447a3e3d1ef22232742c99ea0aa7ab72718 (diff)
stop modeling autostart / autorestart
* these flags are always true, so no need to configure them
Diffstat (limited to 'config-model/src/main/java/com/yahoo/vespa/model/AbstractService.java')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/AbstractService.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/AbstractService.java b/config-model/src/main/java/com/yahoo/vespa/model/AbstractService.java
index 02bb0b412d1..cb3308d75bf 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/AbstractService.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/AbstractService.java
@@ -251,28 +251,6 @@ public abstract class AbstractService extends AbstractConfigProducer<AbstractCon
}
/**
- * Tells if this service should be autostarted by
- * config-sentinel. Returned value will be used to configure the
- * config-sentinel.
- *
- * @return true by default.
- */
- public boolean getAutostartFlag() {
- return true;
- }
-
- /**
- * Tells if this service should be autorestarted by
- * config-sentinel. Returned value will be used to configure the
- * config-sentinel.
- *
- * @return true by default.
- */
- public boolean getAutorestartFlag() {
- return true;
- }
-
- /**
* Returns the name that identifies this service for the config-sentinel.
*
* @return the name that identifies this service for the config-sentinel.