Skip to content

Commit 8703d87

Browse files
committed
TEST: Disable soft-deletes in ParentChildTestCase
Tracked at #33318
1 parent 436d5c4 commit 8703d87

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

modules/parent-join/src/test/java/org/elasticsearch/join/query/ParentChildTestCase.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import org.elasticsearch.common.xcontent.XContentHelper;
2626
import org.elasticsearch.common.xcontent.json.JsonXContent;
2727
import org.elasticsearch.index.IndexModule;
28+
import org.elasticsearch.index.IndexSettings;
2829
import org.elasticsearch.join.ParentJoinPlugin;
2930
import org.elasticsearch.plugins.Plugin;
3031
import org.elasticsearch.test.ESIntegTestCase;
@@ -58,6 +59,8 @@ protected Collection<Class<? extends Plugin>> transportClientPlugins() {
5859
@Override
5960
public Settings indexSettings() {
6061
Settings.Builder builder = Settings.builder().put(super.indexSettings())
62+
// AwaitsFix: https://github.com/elastic/elasticsearch/issues/33318
63+
.put(IndexSettings.INDEX_SOFT_DELETES_SETTING.getKey(), false)
6164
// aggressive filter caching so that we can assert on the filter cache size
6265
.put(IndexModule.INDEX_QUERY_CACHE_ENABLED_SETTING.getKey(), true)
6366
.put(IndexModule.INDEX_QUERY_CACHE_EVERYTHING_SETTING.getKey(), true);

0 commit comments

Comments
 (0)