Github user ilgrosso commented on a diff in the pull request: https://github.com/apache/syncope/pull/30#discussion_r73184620 --- Diff: client/enduser/src/main/java/org/apache/syncope/client/enduser/resources/UserSelfUpdateResource.java --- @@ -57,8 +63,8 @@ protected ResourceResponse newResourceResponse(final IResource.Attributes attrib throw new IllegalArgumentException("Entered captcha is not matching"); } - UserTO userTO = MAPPER.readValue(request.getReader().readLine(), UserTO.class); - LOG.debug("User {} id self-updating", userTO.getUsername()); + String json = request.getReader().readLine(); --- End diff -- Don't see any reason for this change - and debug statement also went away: please revert this change.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---