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
newArns=append(newArns, regexp.MustCompile(`\$\{`+strings.ReplaceAll(strings.ReplaceAll(paramVarName, "[", "\\["), "]", "\\]")+`\}`).ReplaceAllString(arn, param)) // might have dupes but resolved out later
659
-
}
678
+
newArns.addParam(arns, paramVarName, param)
660
679
}
661
-
arns=newArns
680
+
arns=newArns.list
662
681
}
663
682
664
683
// URI parameter substitution
665
684
forparamVarName, param:=rangecall.URIParameters {
666
-
newArns:= []string{}
667
-
for_, arn:=rangearns {
668
-
newArns=append(newArns, regexp.MustCompile(`\$\{`+strings.ReplaceAll(strings.ReplaceAll(paramVarName, "[", "\\["), "]", "\\]")+`\}`).ReplaceAllString(arn, param)) // might have dupes but resolved out later
0 commit comments