Skip to content

The logic to skip 'webappSkipURIs' should be improved. #408

@DMHP

Description

@DMHP

Description:
Following line should be replaced as below in [1].
Existing :
if (!StringUtils.isBlank(webappSkipURIs) && webappSkipURIs.contains(request.getRequestURI())) {

Should be improved:
if (!StringUtils.isBlank(webappSkipURIs) &&
(webappSkipURIs.endsWith(request.getRequestURI()) ||
webappSkipURIs.contains(request.getRequestURI() + ","))) {

[1] https://github.com/wso2-support/carbon-deployment/blob/support-4.5.3/components/webapp-mgt/org.wso2.carbon.webapp.mgt/src/main/java/org/wso2/carbon/webapp/mgt/sso/SAMLSSOValve.java#L164

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions