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
Currently using some type of body serialization (e.g. with circe) leads to eager serialization with request construction. So request gets to backend with body already serialized.
This makes some use cases really hard to implement. For example, consider a delegating backend that does unified request body logging based on typeclass MaskedBodyShow because body often contains sensitive information.
The text was updated successfully, but these errors were encountered:
Currently using some type of body serialization (e.g. with circe) leads to eager serialization with request construction. So request gets to backend with body already serialized.
This makes some use cases really hard to implement. For example, consider a delegating backend that does unified request body logging based on typeclass
MaskedBodyShow
because body often contains sensitive information.The text was updated successfully, but these errors were encountered: