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
Enabling pretty-printing will make serialization fail with somewhat cryptic error message like:
com.fasterxml.jackson.databind.JsonMappingException: Unexpected IOException (of type java.io.IOException): writeRaw() functionality not available with Ion backend
since default Jackson pretty-printing tries to use writeRaw() to add white-space indentation.
But this will not work (see #245), so code in 2.12 should just ignore pretty-printing setting first, and then can tackle actual implementation for textual Ion for 2.13 or later.
The text was updated successfully, but these errors were encountered:
(note: cleaved off #245)
Enabling pretty-printing will make serialization fail with somewhat cryptic error message like:
since default Jackson pretty-printing tries to use
writeRaw()
to add white-space indentation.But this will not work (see #245), so code in 2.12 should just ignore pretty-printing setting first, and then can tackle actual implementation for textual Ion for 2.13 or later.
The text was updated successfully, but these errors were encountered: