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 was archived by the owner on Jul 30, 2024. It is now read-only.
[error] 21 | complete(MyResponse(???))
[error] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[error] |Found: my.dumb.class.MyResponse
[error] |Required: akka.http.scaladsl.marshalling.ToResponseMarshallable
[error] |
[error] |One of the following imports might make progress towards fixing the problem:
[error] |
[error] | import akka.http.impl.util.JavaMapping.Implicits.convertToScala
[error] | import akka.http.javadsl.server.RoutingJavaMapping.Implicits.convertToScala
[error] |
[error] Explanation
[error] ===========
[error]
[error] I tried to show that
[error] my.dumb.class.MyResponse
[error] conforms to
[error] akka.http.scaladsl.marshalling.ToResponseMarshallable
[error] but the comparison trace ended with `false`:
My guess is that using circe in scala3, caused some drift with akka-http-json
The text was updated successfully, but these errors were encountered:
This setup works exactly like using io.circe.generic.auto.* in 2.13 and the error is gone. I'm currently using it with FailFastCirceSupport with no issues.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
this passes
but this fails
with error
My guess is that using circe in scala3, caused some drift with akka-http-json
The text was updated successfully, but these errors were encountered: