Skip to content

Commit

Permalink
Merge branch '4.1.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Oct 24, 2024
2 parents e219f8e + cdd77f2 commit f91c9ff
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Locale;
import java.util.concurrent.atomic.AtomicReference;

import software.amazon.awssdk.auth.credentials.AwsCredentials;
Expand Down Expand Up @@ -175,7 +176,7 @@ private AppIdUserIdMechanism getAppIdMechanism(VaultProperties.AppIdProperties a
}
catch (ClassNotFoundException ex) {

switch (appId.getUserId().toUpperCase()) {
switch (appId.getUserId().toUpperCase(Locale.ROOT)) {

case VaultProperties.AppIdProperties.IP_ADDRESS:
return new IpAddressUserId();
Expand Down

0 comments on commit f91c9ff

Please sign in to comment.