Skip to content

Commit

Permalink
pass through unrecognized signer names as-is
Browse files Browse the repository at this point in the history
  • Loading branch information
lucix-aws committed Nov 15, 2023
1 parent bac13cd commit 8f434ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static String mapEndpointPropertyAuthSchemeName(String name) {
return switch (name) {
case "sigv4" -> "aws.auth#sigv4";
case "sigv4a" -> "aws.auth#sigv4a";
default -> throw new IllegalStateException("Unexpected value: " + name);
default -> name;
};
}

Expand Down

0 comments on commit 8f434ff

Please sign in to comment.