We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 456df30 commit 8ff3f82Copy full SHA for 8ff3f82
test/framework/src/main/java/org/elasticsearch/datageneration/MappingGenerator.java
@@ -64,7 +64,8 @@ public Mapping generate(Template template) {
64
65
rawMapping.put("_doc", topLevelMappingParameters);
66
67
- if (specification.fullyDynamicMapping() == false) {
+ if (specification.fullyDynamicMapping()) {
68
+ // Has to be "true" for fully dynamic mapping
69
topLevelMappingParameters.remove("dynamic");
70
return new Mapping(rawMapping, lookup);
71
}
0 commit comments