aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-feed-client/src/main/java/ai/vespa/feed/client/impl/HttpRequestStrategy.java
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-12-08 11:24:33 +0100
committerjonmv <venstad@gmail.com>2022-12-08 11:24:33 +0100
commit95dd8d9ef4b4ef279a2dac044c41e613dbb20caf (patch)
tree9113898ec3beedd11c0fd9b765ea274436b20ad9 /vespa-feed-client/src/main/java/ai/vespa/feed/client/impl/HttpRequestStrategy.java
parentb1d62841b71910ec8b43f7b35ff2c3e314053e6a (diff)
Handle old servers in handshake
Diffstat (limited to 'vespa-feed-client/src/main/java/ai/vespa/feed/client/impl/HttpRequestStrategy.java')
-rw-r--r--vespa-feed-client/src/main/java/ai/vespa/feed/client/impl/HttpRequestStrategy.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/vespa-feed-client/src/main/java/ai/vespa/feed/client/impl/HttpRequestStrategy.java b/vespa-feed-client/src/main/java/ai/vespa/feed/client/impl/HttpRequestStrategy.java
index 2d052e8a6af..ce86ad59ffe 100644
--- a/vespa-feed-client/src/main/java/ai/vespa/feed/client/impl/HttpRequestStrategy.java
+++ b/vespa-feed-client/src/main/java/ai/vespa/feed/client/impl/HttpRequestStrategy.java
@@ -68,10 +68,6 @@ class HttpRequestStrategy implements RequestStrategy {
return thread;
});
- HttpRequestStrategy(FeedClientBuilderImpl builder) throws IOException {
- this(builder, builder.dryrun ? new DryrunCluster() : new ApacheCluster(builder));
- }
-
HttpRequestStrategy(FeedClientBuilderImpl builder, Cluster cluster) {
this.cluster = builder.benchmark ? new BenchmarkingCluster(cluster) : cluster;
this.strategy = builder.retryStrategy;