You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by mm...@apache.org on 2020/03/26 07:17:39 UTC

[syncope] branch SYNCOPE-163-1 updated (951eb11 -> 8bd7e74)

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

mmoayyed pushed a change to branch SYNCOPE-163-1
in repository https://gitbox.apache.org/repos/asf/syncope.git.


    from 951eb11  SYNCOPE-160: lazy-load config for SyncopeClient access
     new 7c973e9  SYNCOPE-160: restore deployment units in fit
     new 8bd7e74  SYNCOPE-160: take out disabled/commented sample url for props

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 fit/wa-reference/pom.xml                                       |  2 --
 .../syncope/wa/bootstrap/SyncopeWAPropertySourceLocator.java   | 10 ----------
 2 files changed, 12 deletions(-)


[syncope] 01/02: SYNCOPE-160: restore deployment units in fit

Posted by mm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mmoayyed pushed a commit to branch SYNCOPE-163-1
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 7c973e99622b5838432ba92ceac56937e62b29c1
Author: Misagh Moayyed <mm...@gmail.com>
AuthorDate: Thu Mar 26 11:46:41 2020 +0430

    SYNCOPE-160: restore deployment units in fit
---
 fit/wa-reference/pom.xml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/fit/wa-reference/pom.xml b/fit/wa-reference/pom.xml
index d774a57..c0adcd2 100644
--- a/fit/wa-reference/pom.xml
+++ b/fit/wa-reference/pom.xml
@@ -146,7 +146,6 @@ under the License.
                 <context>syncope</context>
               </properties>
             </deployable>
-            <!--
             <deployable>
               <location>${basedir}/../console-reference/target/syncope-fit-console-reference-${project.version}</location>
               <properties>
@@ -159,7 +158,6 @@ under the License.
                 <context>syncope-enduser</context>
               </properties>
             </deployable>
-            -->
             <deployable>
               <location>${project.build.directory}/${project.build.finalName}</location>
               <properties>


[syncope] 02/02: SYNCOPE-160: take out disabled/commented sample url for props

Posted by mm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mmoayyed pushed a commit to branch SYNCOPE-163-1
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 8bd7e7486287e5d314139f6d312531d628e996a2
Author: Misagh Moayyed <mm...@gmail.com>
AuthorDate: Thu Mar 26 11:47:23 2020 +0430

    SYNCOPE-160: take out disabled/commented sample url for props
---
 .../syncope/wa/bootstrap/SyncopeWAPropertySourceLocator.java   | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/wa/bootstrap/src/main/java/org/apache/syncope/wa/bootstrap/SyncopeWAPropertySourceLocator.java b/wa/bootstrap/src/main/java/org/apache/syncope/wa/bootstrap/SyncopeWAPropertySourceLocator.java
index c55edbb..22f3669 100644
--- a/wa/bootstrap/src/main/java/org/apache/syncope/wa/bootstrap/SyncopeWAPropertySourceLocator.java
+++ b/wa/bootstrap/src/main/java/org/apache/syncope/wa/bootstrap/SyncopeWAPropertySourceLocator.java
@@ -47,16 +47,6 @@ public class SyncopeWAPropertySourceLocator implements PropertySourceLocator {
             Map<String, Object> properties = new HashMap<>();
             if (WARestClient.isReady()) {
                 LOG.info("Bootstrapping WA configuration");
-                /*
-                String content = WebClient.create(URI.create("https://demo5926981.mockable.io/casproperties")).
-                    accept(MediaType.APPLICATION_JSON_TYPE).
-                    get().
-                    readEntity(String.class);
-
-                properties.putAll(MAPPER.readValue(content, new TypeReference<Map<String, Object>>() {
-                }));
-                LOG.debug("Loaded properties {}", properties);
-                 */
                 return new MapPropertySource(getClass().getName(), properties);
             }