Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
Merge pull request #249 from hygieia/remove-lcase-cache
Browse files Browse the repository at this point in the history
upgrade core and preserve case for cache
  • Loading branch information
nameisaravind authored Oct 21, 2021
2 parents 0210f06 + a5a6af1 commit e2cf9fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>api</artifactId>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<version>3.4.27</version>
<version>3.4.28</version>
<description>Hygieia Rest API Layer</description>
<url>https://github.com/Hygieia/api</url>

Expand Down Expand Up @@ -59,7 +59,7 @@

<properties>
<!-- Dependencies -->
<com.capitalone.dashboard.core.version>3.15.20</com.capitalone.dashboard.core.version>
<com.capitalone.dashboard.core.version>3.15.21</com.capitalone.dashboard.core.version>
<spring-security.version>4.2.18.RELEASE</spring-security.version>
<tomcat.version>8.5.70</tomcat.version>
<commons-beanutils.version>1.9.4</commons-beanutils.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ protected String getLDAPDN(String repoUrl, String user, String token) {

if(apiSettings.isOptimizeUserCallsToGithub()) {
UserEntitlements entitlements = userEntitlementsRepository.findTopByAuthTypeAndEntitlementTypeAndUsername(AuthType.LDAP,
ENTITLEMENT_TYPE, StringUtils.lowerCase(user));
ENTITLEMENT_TYPE, user);
return (entitlements == null) ? "" : entitlements.getEntitlements();
}

Expand Down

0 comments on commit e2cf9fe

Please sign in to comment.