Skip to content

Commit 21ec62c

Browse files
committed
Default region bug fix
1 parent 9c1a6b7 commit 21ec62c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/asset/installconfig/powervs/regions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func GetRegion(defaultRegion string) (string, error) {
7373
var region string
7474
li := sort.SearchStrings(shortRegions, defaultRegion)
7575
if li == len(shortRegions) || shortRegions[li] != defaultRegion {
76-
defaultRegion = ""
76+
defaultRegion = "dal"
7777
} else {
7878
defaultRegion = longRegions[li]
7979
}

0 commit comments

Comments
 (0)