SOLR-5986: Removing a todo that was introduced with a prior commit. It doesn't make any sense now as partialResults are now returned in all cases where timeAllowed kicks in

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1631145 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Anshum Gupta 2014-10-12 04:16:00 +00:00
parent 4e4d809f2d
commit 67bff82e65
1 changed files with 1 additions and 3 deletions

View File

@ -278,9 +278,7 @@ public class TestGroupingSearch extends SolrTestCaseJ4 {
assertU(commit());
// Just checking if no errors occur
// TODO: Check if this makes any sense now that timeAllowed is also used during Terms enumeration.
// The query can potentially timeout iterating over terms if this is set to too low.
assertJQ(req("q", "*:*", "group", "true", "group.query", "id:1", "group.query", "id:2", "timeAllowed", "100"));
assertJQ(req("q", "*:*", "group", "true", "group.query", "id:1", "group.query", "id:2", "timeAllowed", "1"));
}
@Test