Skip to content

Commit 75b3aba

Browse files
Merge pull request #2956 from hunterkepley/ocm-17311-3
OCM-17311 | fix: Fix broken map for loop
2 parents f59df14 + ec45d23 commit 75b3aba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/fedramp/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ func IsGovRegion(region string) bool {
3333
}
3434

3535
func IsValidEnv(env string) bool {
36-
for _, r := range URLAliases {
37-
if r == env {
36+
for urlAlias := range URLAliases {
37+
if urlAlias == env {
3838
return true
3939
}
4040
}

0 commit comments

Comments
 (0)