summaryrefslogtreecommitdiffstats
path: root/config-proxy
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2016-08-09 11:15:37 +0200
committerGitHub <noreply@github.com>2016-08-09 11:15:37 +0200
commit3ad4a53110427a235c4f27e23f4f6b2fcd190228 (patch)
tree4dfbdb8ba5fc1fd0cbfb7e842d19c744a6a163cd /config-proxy
parentb5760dc4fb6f06cf73a32599c1e754e66601f419 (diff)
parent589932f8fda1b22483f76dd9cf216adadf583307 (diff)
Merge pull request #389 from yahoo/hmusum/remove-unused-argument
Remove unused argument
Diffstat (limited to 'config-proxy')
-rw-r--r--config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ConfigSourceClient.java2
-rw-r--r--config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ProxyServer.java2
-rw-r--r--config-proxy/src/main/java/com/yahoo/vespa/config/proxy/RpcConfigSourceClient.java4
3 files changed, 4 insertions, 4 deletions
diff --git a/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ConfigSourceClient.java b/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ConfigSourceClient.java
index 5424418b4cc..5bbb6d40cc7 100644
--- a/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ConfigSourceClient.java
+++ b/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ConfigSourceClient.java
@@ -24,7 +24,7 @@ public abstract class ConfigSourceClient {
ConfigProxyStatistics statistics,
DelayedResponses delayedResponses) {
if (source instanceof ConfigSourceSet) {
- return new RpcConfigSourceClient((ConfigSourceSet) source, clientUpdater, cacheManager, timingValues, statistics, delayedResponses);
+ return new RpcConfigSourceClient((ConfigSourceSet) source, clientUpdater, cacheManager, timingValues, delayedResponses);
} else if (source instanceof MapBackedConfigSource) {
return (ConfigSourceClient) source;
} else {
diff --git a/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ProxyServer.java b/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ProxyServer.java
index 50f9df9726d..131d292ce5a 100644
--- a/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ProxyServer.java
+++ b/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/ProxyServer.java
@@ -155,7 +155,7 @@ public class ProxyServer implements Runnable {
}
private RpcConfigSourceClient createRpcClient() {
- return new RpcConfigSourceClient((ConfigSourceSet) configSource, clientUpdater, cacheManager, timingValues, statistics, delayedResponses);
+ return new RpcConfigSourceClient((ConfigSourceSet) configSource, clientUpdater, cacheManager, timingValues, delayedResponses);
}
private void setupSigTermHandler() {
diff --git a/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/RpcConfigSourceClient.java b/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/RpcConfigSourceClient.java
index b174a1668c1..8775d92417e 100644
--- a/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/RpcConfigSourceClient.java
+++ b/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/RpcConfigSourceClient.java
@@ -41,10 +41,10 @@ public class RpcConfigSourceClient extends ConfigSourceClient {
private Map<ConfigSourceSet, JRTConfigRequester> requesterPool;
- RpcConfigSourceClient(ConfigSourceSet configSourceSet, ClientUpdater clientUpdater,
+ RpcConfigSourceClient(ConfigSourceSet configSourceSet,
+ ClientUpdater clientUpdater,
CacheManager cacheManager,
TimingValues timingValues,
- ConfigProxyStatistics statistics,
DelayedResponses delayedResponses) {
this.configSourceSet = configSourceSet;
this.clientUpdater = clientUpdater;