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
JsonDeserializer does not allow setting DeserializationFeatures with a state (to enable/disable a feature), it only sets the default state unless I'm missing something on how to pass the DeserializationFeature in.
Was looking through the code for the JsonDeserializer class and the this.objectMapper::enable only seems to allow enabling the DeserializationFeature with the default state. Whereas I need to be able to set boolean flag for a DeserializationFeature to the opposite of the default.
JsonDeserializer does not allow setting DeserializationFeatures with a state (to enable/disable a feature), it only sets the default state unless I'm missing something on how to pass the DeserializationFeature in.
Was looking through the code for the JsonDeserializer class and the
this.objectMapper::enable
only seems to allow enabling the DeserializationFeature with the default state. Whereas I need to be able to set boolean flag for a DeserializationFeature to the opposite of the default.https://github.com/awslabs/aws-glue-schema-registry/blob/master/serializer-deserializer/src/main/java/com/amazonaws/services/schemaregistry/deserializers/json/JsonDeserializer.java#L67-L69
The text was updated successfully, but these errors were encountered: