aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-feed-client
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-01-17 12:54:16 +0100
committerHarald Musum <musum@yahooinc.com>2023-01-17 12:54:16 +0100
commite5166f62c4c93bd1e16bce9346ac7acd4bd8af50 (patch)
tree7fa6543dabbe71a912e6b068fc957ba54a13ad21 /vespa-feed-client
parent2d96663b5067e6646e0e3b737a8607865ea6d586 (diff)
Increase timeout to fix flaky test
Diffstat (limited to 'vespa-feed-client')
-rw-r--r--vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/ApacheClusterTest.java2
1 files changed, 1 insertions, 1 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 0c7d94c04ec..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,7 +48,7 @@ class ApacheClusterTest {
Map.of("name1", () -> "value1",
"name2", () -> "value2"),
"content".getBytes(UTF_8),
- Duration.ofSeconds(1)),
+ Duration.ofSeconds(5)),
vessel);
HttpResponse response = vessel.get(5, TimeUnit.SECONDS);
assertEquals("{}", new String(response.body(), UTF_8));