You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit fixes casing comparison issues related to fetch for HTTP
bindings of headers and prefix headers for both request and response.
It also includes a fix to more robustly validate headers before
serialization.
Copy file name to clipboardExpand all lines: smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/integration/HttpBindingProtocolGenerator.java
+14-11Lines changed: 14 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@
19
19
20
20
importjava.util.Comparator;
21
21
importjava.util.List;
22
+
importjava.util.Locale;
22
23
importjava.util.Map;
23
24
importjava.util.Optional;
24
25
importjava.util.Set;
@@ -146,6 +147,7 @@ public void generateSharedComponents(GenerationContext context) {
Copy file name to clipboardExpand all lines: smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/integration/HttpProtocolGeneratorUtils.java
0 commit comments