GitHub user kaa-dev-35 deleted a comment on the discussion: Migration from Akka to Pekko - jackson serialization error
> Since I don't have a reproducible case - I can only speculate. Is it at all > possible that the Jackson serialization is not being done with the > pekko-serialization-jackson ObjectMapper? Your logging shows `ERROR > core.application.ServiceImpl Internal error. Create.` Your text is mostly clear. Here's a refined version for clarity and detail: --- Thank you greatly for the idea! The problem lies in my custom serialization for publishing binary data to Kafka. ```scala private val objectMapper = new ObjectMapper(new CBORFactory()) with ScalaObjectMapper objectMapper.registerModule(DefaultScalaModule) objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false) ``` This worked with the previous version but doesn't work now. GitHub link: https://github.com/apache/pekko/discussions/1389#discussioncomment-9959673 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
