Skip to content

Commit

Permalink
fixing RejectedExecutionTests (elastic#106146)
Browse files Browse the repository at this point in the history
  • Loading branch information
masseyke authored Mar 11, 2024
1 parent cebb94d commit d32a53b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ protected boolean timeWarped() {
return false;
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/105951")
public void testHistoryOnRejection() throws Exception {
createIndex("idx");
prepareIndex("idx").setSource("field", "a").get();
Expand Down Expand Up @@ -73,11 +72,11 @@ public void testHistoryOnRejection() throws Exception {

@Override
protected Settings nodeSettings(int nodeOrdinal, Settings otherSettings) {

return Settings.builder()
.put(super.nodeSettings(nodeOrdinal, otherSettings))
.put(XPackSettings.SECURITY_ENABLED.getKey(), false)
.put(LicenseSettings.SELF_GENERATED_LICENSE_TYPE.getKey(), "trial")
.put("xpack.watcher.thread_pool.size", 1)
.put("xpack.watcher.thread_pool.queue_size", 0)
.build();
}
Expand Down

0 comments on commit d32a53b

Please sign in to comment.