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 de3160d commit 3cafd1aCopy full SHA for 3cafd1a
libs/x-content/impl/src/main/java/org/elasticsearch/xcontent/provider/json/JsonXContentImpl.java
@@ -54,6 +54,7 @@ public static final XContent jsonXContent() {
54
jsonFactory.configure(JsonGenerator.Feature.AUTO_CLOSE_JSON_CONTENT, false);
55
jsonFactory.configure(JsonParser.Feature.STRICT_DUPLICATE_DETECTION, true);
56
jsonFactory.configure(JsonParser.Feature.USE_FAST_DOUBLE_PARSER, true);
57
+ jsonFactory.configure(JsonFactory.Feature.INTERN_FIELD_NAMES, false);
58
// keeping existing behavior of including source, for now
59
jsonFactory.configure(JsonParser.Feature.INCLUDE_SOURCE_IN_LOCATION, true);
60
jsonXContent = new JsonXContentImpl();
0 commit comments