-
Notifications
You must be signed in to change notification settings - Fork 791
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #3034 Allow configuring circe support parser #3583
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, but one quick question.
@@ -97,7 +101,7 @@ trait CirceInstances extends JawnInstances { | |||
implicit def jsonEncoder[F[_]]: EntityEncoder[F, Json] = | |||
jsonEncoderWithPrinter(defaultPrinter) | |||
|
|||
private def fromJsonToChunk(printer: Printer)(json: Json): Chunk[Byte] = | |||
def fromJsonToChunk(printer: Printer)(json: Json): Chunk[Byte] = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What necessitated adding this to the public API?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rossabaker sorry, it slipped through. Not intentional. Added back the private and pushed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One more thing that slipped through was the first commit message containing a WIP
in it. I modified the commit message to remove the WIP
and force pushed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
No description provided.