File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
modules/parent-join/src/test/java/org/elasticsearch/join/query Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 2626import org .elasticsearch .common .xcontent .XContentHelper ;
2727import org .elasticsearch .common .xcontent .json .JsonXContent ;
2828import org .elasticsearch .index .IndexModule ;
29+ import org .elasticsearch .index .IndexSettings ;
2930import org .elasticsearch .join .ParentJoinPlugin ;
3031import org .elasticsearch .plugins .Plugin ;
3132import org .elasticsearch .test .ESIntegTestCase ;
@@ -59,6 +60,8 @@ protected Collection<Class<? extends Plugin>> transportClientPlugins() {
5960 @ Override
6061 public Settings indexSettings () {
6162 Settings .Builder builder = Settings .builder ().put (super .indexSettings ())
63+ // AwaitsFix: https://github.com/elastic/elasticsearch/issues/33318
64+ .put (IndexSettings .INDEX_SOFT_DELETES_SETTING .getKey (), false )
6265 // aggressive filter caching so that we can assert on the filter cache size
6366 .put (IndexModule .INDEX_QUERY_CACHE_ENABLED_SETTING .getKey (), true )
6467 .put (IndexModule .INDEX_QUERY_CACHE_EVERYTHING_SETTING .getKey (), true );
You can’t perform that action at this time.
0 commit comments