[java-identity-provider] branch master updated: IDP-942 - idp startup fails when no idp.sealer properties defined
Scott Cantor
cantor.2 at osu.edu
Tue Mar 27 20:17:14 EDT 2018
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=65af4445b01712dc59cc6e9b37e8cbb270528991
The following commit(s) were added to refs/heads/master by this push:
new 65af444 IDP-942 - idp startup fails when no idp.sealer properties defined
65af444 is described below
commit 65af4445b01712dc59cc6e9b37e8cbb270528991
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Mar 27 20:17:11 2018 -0400
IDP-942 - idp startup fails when no idp.sealer properties defined
https://issues.shibboleth.net/jira/browse/IDP-942
Regression, CAS ticket services need lazy-init.
---
idp-conf/src/main/resources/system/conf/cas-protocol-system.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/idp-conf/src/main/resources/system/conf/cas-protocol-system.xml b/idp-conf/src/main/resources/system/conf/cas-protocol-system.xml
index 17bcfb4..13523ef 100644
--- a/idp-conf/src/main/resources/system/conf/cas-protocol-system.xml
+++ b/idp-conf/src/main/resources/system/conf/cas-protocol-system.xml
@@ -11,12 +11,12 @@
default-destroy-method="destroy">
- <bean id="simpleTicketService" class="net.shibboleth.idp.cas.ticket.impl.SimpleTicketService"
+ <bean id="simpleTicketService" class="net.shibboleth.idp.cas.ticket.impl.SimpleTicketService" lazy-init="true"
c:service-ref="#{'%{idp.cas.StorageService:shibboleth.StorageService}'.trim()}" />
- <bean id="encodingTicketService" class="net.shibboleth.idp.cas.ticket.impl.EncodingTicketService"
+ <bean id="encodingTicketService" class="net.shibboleth.idp.cas.ticket.impl.EncodingTicketService" lazy-init="true"
c:service-ref="#{'%{idp.cas.StorageService:shibboleth.StorageService}'.trim()}"
- c:sealer-ref="encodedTicketSealer"/>
+ c:sealer-ref="encodedTicketSealer" />
<bean id="encodedTicketSealer" lazy-init="true"
class="net.shibboleth.utilities.java.support.security.DataSealer"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list