Skip to content
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.

Commit

Permalink
Fix Merge Operations Issue (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
LianwMS authored Apr 29, 2020
1 parent a2ebdba commit 9a58900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/aznamer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class AzNamer {
return subOperationGroupName == ""? "create": subOperationGroupName + " " + "create";
} else if(operationName.startsWith("update") && (httpProtocol == "put" || httpProtocol == "patch")) {
return subOperationGroupName == ""? "update": subOperationGroupName + " " + "update";
} else if(operationName.startsWith("get") && httpProtocol == "get") {
} else if(operationName == "get" && httpProtocol == "get") {
return subOperationGroupName == ""? "show": subOperationGroupName + " " + "show";
} else if(operationName.startsWith("list") && httpProtocol == "get") {
// for list scenarios like kusto, if there's list, listbyresourcegroup, listsku, listskubyresource
Expand Down

0 comments on commit 9a58900

Please sign in to comment.