You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2020/02/18 07:27:25 UTC

[syncope] branch master updated: Fix build

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/master by this push:
     new d043ab8  Fix build
d043ab8 is described below

commit d043ab8815c79573f24f44d3befb9665af4efe63
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Feb 18 08:27:11 2020 +0100

    Fix build
---
 .travis.yml                                                        | 7 ++++---
 .../core/provisioning/java/pushpull/AbstractPullResultHandler.java | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 2c5b3b3..a1fa1b3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -53,9 +53,10 @@ jobs:
       ######################################################
     - stage: fit
       name: "Full Integration Tests: Apache Tomcat / H2 / JSON Content-Type"
-      env: JAVAEE_CONTAINER=Tomcat
-      env: DBMS=H2
-      env: jaxrsContentType=application/json
+      env:
+       - JAVAEE_CONTAINER=Tomcat
+       - DBMS=H2
+       - jaxrsContentType=application/json
       script: travis_wait 55 mvn -f fit/core-reference/pom.xml verify -Dinvoker.streamLogs=true -Dmodernizer.skip=true -Dianal.skip=true -Drat.skip=true -Dcheckstyle.skip=true -Djacoco.skip=true
       after_failure:
        - cat fit/core-reference/target/log/*
diff --git a/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/pushpull/AbstractPullResultHandler.java b/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/pushpull/AbstractPullResultHandler.java
index 3f2a95b..548e0f6 100644
--- a/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/pushpull/AbstractPullResultHandler.java
+++ b/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/pushpull/AbstractPullResultHandler.java
@@ -214,7 +214,7 @@ public abstract class AbstractPullResultHandler extends AbstractSyncopeResultHan
                     action.beforeProvision(profile, delta, anyCR);
                 }
             }
-            result.setName(getName(anyTO));
+            result.setName(getName(anyCR));
 
             Object output;
             Result resultStatus;