aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-feed-client
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2024-05-16 15:32:52 +0200
committerjonmv <venstad@gmail.com>2024-05-16 15:32:52 +0200
commit2b1ba7831859c0c4caaa487fd2fb6d6f49b5a7d4 (patch)
tree47785948c4b9276e1db72b2ac9f6952dab0d9891 /vespa-feed-client
parent0c94e0b116f67fc07c9281552b58d9d4c11fd88a (diff)
Fix test comment
Diffstat (limited to 'vespa-feed-client')
-rw-r--r--vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/HttpRequestStrategyTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/HttpRequestStrategyTest.java b/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/HttpRequestStrategyTest.java
index b8335f97e9c..853d7904f63 100644
--- a/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/HttpRequestStrategyTest.java
+++ b/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/HttpRequestStrategyTest.java
@@ -183,7 +183,7 @@ class HttpRequestStrategyTest {
// IOException is retried past retry limit within grace period.
cluster.expect((__, vessel) -> {
- now.addAndGet(10); // Exceed grace period.
+ now.addAndGet(10); // Exceed grace period after 10 attempts.
vessel.completeExceptionally(new IOException("retry me"));
});
expected = assertThrows(ExecutionException.class,