diff --git a/client/rest-high-level/src/test/java/org/elasticsearch/client/BulkProcessorRetryIT.java b/client/rest-high-level/src/test/java/org/elasticsearch/client/BulkProcessorRetryIT.java index e3b280225cb7b..19e2de22e54ef 100644 --- a/client/rest-high-level/src/test/java/org/elasticsearch/client/BulkProcessorRetryIT.java +++ b/client/rest-high-level/src/test/java/org/elasticsearch/client/BulkProcessorRetryIT.java @@ -56,6 +56,7 @@ public void testBulkRejectionLoadWithoutBackoff() throws Exception { executeBulkRejectionLoad(BackoffPolicy.noBackoff(), rejectedExecutionExpected); } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/41324") public void testBulkRejectionLoadWithBackoff() throws Throwable { boolean rejectedExecutionExpected = false; executeBulkRejectionLoad(BackoffPolicy.exponentialBackoff(), rejectedExecutionExpected); diff --git a/server/src/test/java/org/elasticsearch/action/bulk/BulkProcessorRetryIT.java b/server/src/test/java/org/elasticsearch/action/bulk/BulkProcessorRetryIT.java index e4b6fff9fc353..054e213d5abe9 100644 --- a/server/src/test/java/org/elasticsearch/action/bulk/BulkProcessorRetryIT.java +++ b/server/src/test/java/org/elasticsearch/action/bulk/BulkProcessorRetryIT.java @@ -64,6 +64,7 @@ public void testBulkRejectionLoadWithoutBackoff() throws Throwable { executeBulkRejectionLoad(BackoffPolicy.noBackoff(), rejectedExecutionExpected); } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/41324") public void testBulkRejectionLoadWithBackoff() throws Throwable { boolean rejectedExecutionExpected = false; executeBulkRejectionLoad(BackoffPolicy.exponentialBackoff(), rejectedExecutionExpected);