You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
Could it be possible for ml-gradle to allow comments in FasterXML parser (ALLOW_COMMENTS) so we can deactivate a config in a JSON file instead of having to delete the part ?
Example :
{
"database-name" : "%%DATABASE%%",
"range-element-index" : [ /*{
"scalar-type" : "int",
"namespace-uri" : null,
"localname" : "id",
"collation" : null,
"range-value-positions" : false,
"invalid-values" : "ignore"
} */]
}
The text was updated successfully, but these errors were encountered:
Consolidating all instantiations of ObjectMapper into a static ObjectMapperFactory class which enables the Jackson "allow comments" feature
Modifying ManageClient so that it can optionally "clean" JSON payloads by reading them into a JsonNode and then writing them back out to a String, which ensures any comments that are ignored are then removed.
Since there's a little cost to that "cleaning" of JSON, this behavior will be disabled by default. A new property - mlManageCleanJsonPayloads - will allow for the behavior to be enabled.
Could it be possible for ml-gradle to allow comments in FasterXML parser (ALLOW_COMMENTS) so we can deactivate a config in a JSON file instead of having to delete the part ?
Example :
{
"database-name" : "%%DATABASE%%",
"range-element-index" : [ /*{
"scalar-type" : "int",
"namespace-uri" : null,
"localname" : "id",
"collation" : null,
"range-value-positions" : false,
"invalid-values" : "ignore"
} */]
}
The text was updated successfully, but these errors were encountered: