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
Funny, I was just about to prepare a patch that used that very function to log invalid messages on the server side. On the client, it probably is not as necessary, since the client might know what it just sent.
We have come across a problem in when doing JSR-303 validation, due to dropwizard
ConstraintViolations
adding the InvalidValue back in the message.The following request payload,
will result in the following error
We don't want the "was" part.
Based on the investigation we found that it is being appended in the
ConstraintViolations.format()
method.Is there any way that we can avoid the
invalidValue
from being attached to the message?If not can we have a feature switch for that?
The text was updated successfully, but these errors were encountered: