You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* try soft commit
* keep softcommit short to avoid delays in visibility
* add test delay for autosoft, make hardcommit 30s like auto setting
* add 1-2 second delays in tests for softAutocomplete at 1s
* more sleeps
* more delays
* remove commented out deletes
* more commented out code to remove
* add 1 sec on failing tests
* add missing perm reindex
* change waiting
* fix index object and add null check for unit test
* remove test-specific null check
* reindex linking dv
* general solr release note
* more fixes
* revert change - was correct
* another sleepforsearch
* test adding explicit reindexing
* avoid other uses of cache in test that looks for exact counts
* Adding longer max sleep, add count param to sleep method
* Revert "add missing perm reindex"
This reverts commit 317038a.
Multiple improvements have ben made to they way Solr indexing and searching is done. Response times should be significantly improved. See the individual PRs in this release for details.
assertTrue(UtilIT.sleepForSearch(searchPart, apiToken2, "", UtilIT.MAXIMUM_INGEST_LOCK_DURATION), "Failed test if search exceeds max duration " + searchPart);
108
+
assertTrue(UtilIT.sleepForSearch(searchPart, apiToken2, "", 1, UtilIT.MAXIMUM_INGEST_LOCK_DURATION), "Failed test if search exceeds max duration " + searchPart);
assertTrue(UtilIT.sleepForSearch(searchPart, apiToken, "&subtree="+parentDataverseAlias, 1, UtilIT.GENERAL_LONG_DURATION), "Failed test if search exceeds max duration " + searchPart);
assertTrue(UtilIT.sleepForSearch(searchPart, apiToken, "&subtree="+parentDataverseAlias, UtilIT.MAXIMUM_INGEST_LOCK_DURATION), "Failed test if search exceeds max duration " + searchPart);
919
904
searchPublishedSubtreeSuper.prettyPrint();
920
905
searchPublishedSubtreeSuper.then().assertThat()
921
906
.statusCode(OK.getStatusCode())
@@ -968,7 +953,7 @@ public void testSubtreePermissions() {
968
953
.statusCode(OK.getStatusCode());
969
954
970
955
// Wait a little while for the index to pick up the datasets, otherwise timing issue with searching for it.
0 commit comments