Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1300,7 +1300,7 @@ public void test() throws Exception {
"cache",
"false",
"timeAllowed",
"200",
"10000", // generous; queries must complete fully even on slow CI
"sleep",
"10");
assertFalse(
Expand Down
2 changes: 1 addition & 1 deletion solr/core/src/test/org/apache/solr/TestGroupingSearch.java
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ public void testGroupingWithTimeAllowed() throws Exception {
"group.query",
"id:2",
"timeAllowed",
"200"),
"10000"), // generous; must complete fully even on slow CI
"/grouped/id:1/matches==5",
"/grouped/id:2/matches==5");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void testQueryLimits() throws Exception {
@Test
public void testAdjustShardRequestLimits() throws Exception {
SolrClient solrClient = cluster.getSolrClient();
String timeAllowed = "1000"; // ms - increased from 500 to avoid flakiness with grouped queries
String timeAllowed = "10000"; // ms - generous; must complete fully even on slow CI
ModifiableSolrParams params =
params(
"q",
Expand Down
Loading