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