Skip to content

Commit 7c47a18

Browse files
committed
Fix unknown string to use enum
1 parent c141aba commit 7c47a18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/sdk-core/src/main/java/software/amazon/awssdk/core/sync/ResponseTransformer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ default boolean needsConnectionLeftOpen() {
103103
* @return String containing the identifying name of this RequestTransformer.
104104
*/
105105
default String name() {
106-
return "UNKNOWN";
106+
return TransformerType.UNKNOWN.name();
107107
}
108108

109109
/**

0 commit comments

Comments
 (0)