Github user ilgrosso commented on a diff in the pull request: https://github.com/apache/syncope/pull/26#discussion_r71832626 --- Diff: core/workflow-activiti/src/main/java/org/apache/syncope/core/workflow/activiti/ActivitiUserWorkflowAdapter.java --- @@ -349,11 +349,33 @@ protected void saveForFormSubmit(final User user, final String password, final P } @Override + public WorkflowResult<String> doRequestCertify(final User user) { + String authUser = AuthContextUtils.getUsername(); + engine.getRuntimeService().setVariable(user.getWorkflowId(), FORM_SUBMITTER, authUser); + + LOG.debug("Executing request-certify"); + Set<String> performedTasks = doExecuteTask(user, "request-certify", null); + for (String s: performedTasks) { --- End diff -- Please remove this debug loop (other methods of this class do not have it)
--- 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. ---