Skip to content

Commit ecb18c1

Browse files
authored
Fix protocol dependencies for smithy-rpc-v2-cbor when creating new service module (#6265)
* Fix protocol dependencies for smithy-rpc-v2-cbor when creating new service module. * Fix whitespace
1 parent 6b912d4 commit ecb18c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release-scripts/src/main/java/software/amazon/awssdk/release/CreateNewServiceModuleMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private String transformSpecialProtocols(String protocol) {
141141
case "ec2": return "aws-query";
142142
case "rest-xml": return "aws-xml";
143143
case "rest-json": return "aws-json";
144-
case "rpc-v2-cbor": return "smithy-rpcv2";
144+
case "smithy-rpc-v2-cbor": return "smithy-rpcv2";
145145
default: return "aws-" + protocol;
146146
}
147147
}

0 commit comments

Comments
 (0)