Skip to content

Commit

Permalink
Fix ShardIndexingPressureSettingsIT
Browse files Browse the repository at this point in the history
Signed-off-by: Sachin Kale <kalsac@amazon.com>
  • Loading branch information
Sachin Kale committed Sep 2, 2023
1 parent c513180 commit fd7451c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Expand Up @@ -68,7 +68,7 @@
import static org.hamcrest.Matchers.instanceOf;

@OpenSearchIntegTestCase.ClusterScope(scope = OpenSearchIntegTestCase.Scope.TEST, numDataNodes = 2, numClientNodes = 1)
@LuceneTestCase.AwaitsFix(bugUrl = "Indexing backpressure is blocking write threadpool")
@LuceneTestCase.AwaitsFix(bugUrl = "Indexing backpressure is blocking write threadpool on replica")
public class IndexingPressureIT extends OpenSearchIntegTestCase {

public static final String INDEX_NAME = "test";
Expand Down
Expand Up @@ -5,6 +5,7 @@

package org.opensearch.index;

import org.apache.lucene.tests.util.LuceneTestCase;
import org.apache.lucene.util.RamUsageEstimator;
import org.opensearch.action.admin.cluster.settings.ClusterUpdateSettingsRequest;
import org.opensearch.action.admin.indices.stats.IndicesStatsResponse;
Expand Down Expand Up @@ -45,6 +46,7 @@
import static org.opensearch.test.hamcrest.OpenSearchAssertions.assertAcked;

@OpenSearchIntegTestCase.ClusterScope(scope = OpenSearchIntegTestCase.Scope.TEST, numDataNodes = 2, numClientNodes = 1)
@LuceneTestCase.AwaitsFix(bugUrl = "Indexing backpressure is blocking write threadpool on replica")
public class ShardIndexingPressureSettingsIT extends OpenSearchIntegTestCase {

public static final String INDEX_NAME = "test_index";
Expand Down

0 comments on commit fd7451c

Please sign in to comment.