aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-feed-client
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2023-01-18 11:46:22 +0100
committerGitHub <noreply@github.com>2023-01-18 11:46:22 +0100
commitb7778b0652a24e7afb670fcfa1750fbebe3c3a36 (patch)
treef81e7771a9dcb108b2addac757f131d0a82f8733 /vespa-feed-client
parentf075307ccf2e46a7562a53022bebd4e05ba23d31 (diff)
Revert "Parse, validate and use new zone endpoint syntax"
Diffstat (limited to 'vespa-feed-client')
-rw-r--r--vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/ApacheClusterTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/ApacheClusterTest.java b/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/ApacheClusterTest.java
index 30ed8dcfdd4..f45f7f9d246 100644
--- a/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/ApacheClusterTest.java
+++ b/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/ApacheClusterTest.java
@@ -48,9 +48,9 @@ class ApacheClusterTest {
Map.of("name1", () -> "value1",
"name2", () -> "value2"),
"content".getBytes(UTF_8),
- Duration.ofSeconds(10)),
+ Duration.ofSeconds(5)),
vessel);
- HttpResponse response = vessel.get(15, TimeUnit.SECONDS);
+ HttpResponse response = vessel.get(5, TimeUnit.SECONDS);
assertEquals("{}", new String(response.body(), UTF_8));
assertEquals(200, response.code());