Skip to content

Commit

Permalink
Fix wrong region mapping in GCS
Browse files Browse the repository at this point in the history
  • Loading branch information
Genbox committed Dec 3, 2024
1 parent 1ee9f2a commit f307d36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public IEnumerable<IRegionInfo> GetRegions()
yield return new RegionInfo(GoogleCloudStorageRegion.UsCentral1, "US-CENTRAL1", "North America (Iowa)");
yield return new RegionInfo(GoogleCloudStorageRegion.UsEast1, "US-EAST1", "North America (South Carolina)");
yield return new RegionInfo(GoogleCloudStorageRegion.UsEast4, "US-EAST4", "North America (Northern Virginia)");
yield return new RegionInfo(GoogleCloudStorageRegion.UsEast5, "US-WEST1", "North America (Columbus)");
yield return new RegionInfo(GoogleCloudStorageRegion.UsEast5, "US-EAST5", "North America (Columbus)");
yield return new RegionInfo(GoogleCloudStorageRegion.UsSouth1, "US-SOUTH1", "North America (Dallas)");
yield return new RegionInfo(GoogleCloudStorageRegion.UsWest1, "US-WEST1", "North America (Oregon)");
yield return new RegionInfo(GoogleCloudStorageRegion.UsWest2, "US-WEST2", "North America (Los Angeles)");
Expand Down

0 comments on commit f307d36

Please sign in to comment.