summaryrefslogtreecommitdiffstats
path: root/container-search
diff options
context:
space:
mode:
authorOlli Virtanen <olli.virtanen@oath.com>2019-07-04 16:34:11 +0200
committerGitHub <noreply@github.com>2019-07-04 16:34:11 +0200
commit5ea083be3e4cf2e5b8ff98bba1524c20bcbe8677 (patch)
tree67bf3b4fb97e58d17c04c1f514008f6c6831033a /container-search
parent9495b0ffeb30393cf0c10c9922ecc7ecf23de0f7 (diff)
parent7ba7d0b1f1ac4cefa30f036868f7e8b172286928 (diff)
Merge pull request #9961 from vespa-engine/bratseth/increase-timeout
Increase timeout
Diffstat (limited to 'container-search')
-rw-r--r--container-search/src/test/java/com/yahoo/prelude/fastsearch/test/FastSearcherTestCase.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/container-search/src/test/java/com/yahoo/prelude/fastsearch/test/FastSearcherTestCase.java b/container-search/src/test/java/com/yahoo/prelude/fastsearch/test/FastSearcherTestCase.java
index 3b30e0df9ad..4f54b60187b 100644
--- a/container-search/src/test/java/com/yahoo/prelude/fastsearch/test/FastSearcherTestCase.java
+++ b/container-search/src/test/java/com/yahoo/prelude/fastsearch/test/FastSearcherTestCase.java
@@ -134,7 +134,7 @@ public class FastSearcherTestCase {
documentdbConfigWithOneDb);
{ // No direct.summaries
- String query = "?query=sddocname:a&summary=simple";
+ String query = "?query=sddocname:a&summary=simple&timeout=20s";
Result result = doSearch(fastSearcher, new Query(query), 0, 10);
doFill(fastSearcher, result);
ErrorMessage error = result.hits().getError();
@@ -142,7 +142,7 @@ public class FastSearcherTestCase {
}
{ // direct.summaries due to query cache
- String query = "?query=sddocname:a&ranking.queryCache&timeout=5000ms";
+ String query = "?query=sddocname:a&ranking.queryCache&timeout=20s";
Result result = doSearch(fastSearcher, new Query(query), 0, 10);
doFill(fastSearcher, result);
ErrorMessage error = result.hits().getError();
@@ -151,7 +151,7 @@ public class FastSearcherTestCase {
}
{ // direct.summaries due to no summary features
- String query = "?query=sddocname:a&dispatch.summaries&summary=simple&ranking=simpler&timeout=5000ms";
+ String query = "?query=sddocname:a&dispatch.summaries&summary=simple&ranking=simpler&timeout=20s";
Result result = doSearch(fastSearcher, new Query(query), 0, 10);
doFill(fastSearcher, result);
ErrorMessage error = result.hits().getError();