Skip to content

Commit

Permalink
TW-79696 Enable support for linked templates on Azure Cloud plugin
Browse files Browse the repository at this point in the history
- Review fix
  • Loading branch information
IlyaFomenko committed Mar 13, 2023
1 parent 11b6383 commit 2a1c658
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ object AzureUtils {
internal fun getTemplateParameters(template: JsonNode) : List<TemplateParameterDescriptor> {
val parameters = template["parameters"]
if (parameters == null) {
throw TemplateParameterException("Incorrect tenplate format. No 'paramaters' section")
throw TemplateParameterException("Incorrect template format. No 'paramaters' section")
}
try {
return parameters
Expand Down

0 comments on commit 2a1c658

Please sign in to comment.