summaryrefslogtreecommitdiffstats
path: root/standalone-container
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2019-11-23 22:11:40 +0100
committerHarald Musum <musum@verizonmedia.com>2019-11-23 22:11:40 +0100
commit04b8cf897f824f43051f8b84f6779c494f0f1758 (patch)
tree3515e4a9edb53fa96728065ef1cd63f809ce0fb2 /standalone-container
parent46f36c3161124d2d76deb5cdd5a8ea1ef7755bb5 (diff)
Prepare for removing unused/unnecessary options payloadCompressionType and numParallelTenantLoaders
Diffstat (limited to 'standalone-container')
-rw-r--r--standalone-container/src/main/java/com/yahoo/container/standalone/CloudConfigInstallVariables.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/standalone-container/src/main/java/com/yahoo/container/standalone/CloudConfigInstallVariables.java b/standalone-container/src/main/java/com/yahoo/container/standalone/CloudConfigInstallVariables.java
index 79108862163..b77325dce93 100644
--- a/standalone-container/src/main/java/com/yahoo/container/standalone/CloudConfigInstallVariables.java
+++ b/standalone-container/src/main/java/com/yahoo/container/standalone/CloudConfigInstallVariables.java
@@ -72,6 +72,7 @@ public class CloudConfigInstallVariables implements CloudConfigOptions {
return getInstallVariable("zookeeper_electionPort", Integer::parseInt);
}
+ // TODO: Remove when 7.146 is the oldest version in use
@Override
public Optional<String> payloadCompressionType() {
return getInstallVariable("payload_compression_type", Function.identity());
@@ -105,6 +106,7 @@ public class CloudConfigInstallVariables implements CloudConfigOptions {
return getInstallVariable("hosted_vespa", Boolean::parseBoolean);
}
+ // TODO: Remove when 7.146 is the oldest version in use
@Override
public Optional<Integer> numParallelTenantLoaders() {
return getInstallVariable("num_parallel_tenant_loaders", Integer::parseInt);