Skip to content

Commit 726d8b8

Browse files
Simplify priorities - flatten list and prioritize Resources over Runnables
1 parent dd0053f commit 726d8b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/org/labkey/test/util/search/SearchAdminAPIHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static void waitForIndexerBackground(int timeout)
7878
// Invoke a special server action that waits until all previous indexer tasks are complete, even wait for background indexing tasks to complete (e.g. deleteContainer)
7979
var cmd = new SimplePostCommand("search", "waitForIndexer");
8080
cmd.setTimeout(timeout);
81-
cmd.setParameters(Map.of("priority", "crawlLow"));
81+
cmd.setParameters(Map.of("priority", "idle"));
8282

8383
executeCommand(cmd, null);
8484
}

0 commit comments

Comments
 (0)