Load IDPs in SAML userDBInit to manage SLO in SAML proxy mode

This commit is contained in:
Clément Oudot 2010-09-13 15:10:39 +00:00
parent 657c39d563
commit 07c1c59d0e

View File

@ -25,6 +25,10 @@ sub issuerDBInit {
# Load SAML service providers
return PE_SAML_LOAD_SP_ERROR unless $self->loadSPs();
# Load SAML identity providers
# Required to manage SLO in Proxy mode
return PE_SAML_LOAD_IDP_ERROR unless $self->loadIDPs();
PE_OK;
}