[java-idp-integration-tests] 02/02: IDP-1110 - Prefix IdP properties with 'idp' rather than 'jetty'.

Tom Zeller tzeller at dragonacea.biz
Wed Aug 29 17:01:12 EDT 2018


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

tzeller pushed a commit to branch master
in repository java-idp-integration-tests.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=1e266e6686eb8aa6387edcb65083d366fb684ce2

commit 1e266e6686eb8aa6387edcb65083d366fb684ce2
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Wed Aug 29 15:58:43 2018 -0500

    IDP-1110 - Prefix IdP properties with 'idp' rather than 'jetty'.
    
    https://issues.shibboleth.net/jira/browse/IDP-1110
---
 src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
index d9a2012..3ab0c42 100644
--- a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
+++ b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
@@ -646,8 +646,11 @@ public abstract class BaseIntegrationTest
             // Jetty 9.4 backchannel host and port
             final Path backchannelIni = pathToJettyBase.resolve(Paths.get("start.d", "idp-backchannel.ini"));
             if (backchannelIni.toAbsolutePath().toFile().exists()) {
+                // 'jetty.backchannel' properties are deprecated and replaced with 'idp.backchannel'. 
                 replaceProperty(backchannelIni, "jetty.backchannel.host", privateSecureAddress);
                 replaceProperty(backchannelIni, "jetty.backchannel.port", Integer.toString(backchannelPort));
+                replaceProperty(backchannelIni, "idp.backchannel.host", privateSecureAddress);
+                replaceProperty(backchannelIni, "idp.backchannel.port", Integer.toString(backchannelPort));
             }
         }
         

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


More information about the commits mailing list