Skip to content

Commit

Permalink
patch update ACS endpoints to use _plugins #1031
Browse files Browse the repository at this point in the history
Updated the ACS endpoint builder code components. [BUG] v2.1 security plugin is still using _opendistro/_security/saml/acs #1031

Signed-off-by: hari prasad <[email protected]>
  • Loading branch information
hpkuppuraj committed Jul 23, 2022
1 parent be876c0 commit 4c432a4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ private SingleLogoutService findSingleLogoutService(IDPSSODescriptor idpSsoDescr
private String buildAssertionConsumerEndpoint(String dashboardsRoot) {

if (dashboardsRoot.endsWith("/")) {
return dashboardsRoot + "_opendistro/_security/saml/acs";
return dashboardsRoot + "_plugins/_security/saml/acs";
} else {
return dashboardsRoot + "/_opendistro/_security/saml/acs";
return dashboardsRoot + "/_plugins/_security/saml/acs";
}
}

Expand Down

0 comments on commit 4c432a4

Please sign in to comment.