[java-identity-provider] branch master updated: IDP-1551 - Inaccessible idp.home logged incorrectly as default location

Scott Cantor cantor.2 at osu.edu
Mon Feb 17 10:59:45 EST 2020


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch master
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=702fc23053b1fa3e7f3948044caa05f573092492

The following commit(s) were added to refs/heads/master by this push:
       new  702fc23   IDP-1551 - Inaccessible idp.home logged incorrectly as default location
702fc23 is described below

commit 702fc23053b1fa3e7f3948044caa05f573092492
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Feb 17 10:59:41 2020 -0500

    IDP-1551 - Inaccessible idp.home logged incorrectly as default location
    
    https://issues.shibboleth.net/jira/browse/IDP-1551
---
 .../idp/spring/IdPPropertiesApplicationContextInitializer.java      | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/idp-core/src/main/java/net/shibboleth/idp/spring/IdPPropertiesApplicationContextInitializer.java b/idp-core/src/main/java/net/shibboleth/idp/spring/IdPPropertiesApplicationContextInitializer.java
index 8a1b138..b0f0612 100644
--- a/idp-core/src/main/java/net/shibboleth/idp/spring/IdPPropertiesApplicationContextInitializer.java
+++ b/idp-core/src/main/java/net/shibboleth/idp/spring/IdPPropertiesApplicationContextInitializer.java
@@ -120,11 +120,11 @@ public class IdPPropertiesApplicationContextInitializer
             appendPropertySource(applicationContext, resource.toString(), properties);
 
         } else if (isFailFast(applicationContext)) {
-            log.error("Unable to find '{}' at well known location '{}'", getSearchTarget(), getSearchLocation());
+            log.error("Unable to find '{}' at '{}'", getSearchTarget(), searchLocation);
             throw new ConstraintViolationException(
-                    "Unable to find '" + getSearchTarget() + "' at well known location");
+                    "Unable to find '" + getSearchTarget() + "' at '" + searchLocation + "'");
         } else {
-            log.warn("Unable to find '{}' at well known location '{}'", getSearchTarget(), getSearchLocation());
+            log.warn("Unable to find '{}' at '{}'", getSearchTarget(), searchLocation);
         }
     }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list