summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2021-06-22 17:00:05 +0200
committerGitHub <noreply@github.com>2021-06-22 17:00:05 +0200
commit11bd61fd8be9d9623381add8182bc75795b96024 (patch)
tree61e1a5341c734615ff81dd0de9e6af85a2ffd44c
parentcf14cb26314664c33eea2b6fbc6a32d989cad812 (diff)
Keep number of documents in test.
-rw-r--r--vespa-feed-client/src/test/java/ai/vespa/feed/client/HttpRequestStrategyTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespa-feed-client/src/test/java/ai/vespa/feed/client/HttpRequestStrategyTest.java b/vespa-feed-client/src/test/java/ai/vespa/feed/client/HttpRequestStrategyTest.java
index 405c9d493c1..21ab6889e6e 100644
--- a/vespa-feed-client/src/test/java/ai/vespa/feed/client/HttpRequestStrategyTest.java
+++ b/vespa-feed-client/src/test/java/ai/vespa/feed/client/HttpRequestStrategyTest.java
@@ -33,7 +33,7 @@ class HttpRequestStrategyTest {
@Test
void testConcurrency() {
- int documents = 1 << 24;
+ int documents = 1 << 16;
HttpRequest request = new HttpRequest("PUT", "/", null, null);
HttpResponse response = HttpResponse.of(200, "{}".getBytes(UTF_8));
ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);