File tree 1 file changed +3
-0
lines changed
modules/parent-join/src/test/java/org/elasticsearch/join/query
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 25
25
import org .elasticsearch .common .xcontent .XContentHelper ;
26
26
import org .elasticsearch .common .xcontent .json .JsonXContent ;
27
27
import org .elasticsearch .index .IndexModule ;
28
+ import org .elasticsearch .index .IndexSettings ;
28
29
import org .elasticsearch .join .ParentJoinPlugin ;
29
30
import org .elasticsearch .plugins .Plugin ;
30
31
import org .elasticsearch .test .ESIntegTestCase ;
@@ -58,6 +59,8 @@ protected Collection<Class<? extends Plugin>> transportClientPlugins() {
58
59
@ Override
59
60
public Settings indexSettings () {
60
61
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 )
61
64
// aggressive filter caching so that we can assert on the filter cache size
62
65
.put (IndexModule .INDEX_QUERY_CACHE_ENABLED_SETTING .getKey (), true )
63
66
.put (IndexModule .INDEX_QUERY_CACHE_EVERYTHING_SETTING .getKey (), true );
You can’t perform that action at this time.
0 commit comments