Skip to content
This repository was archived by the owner on Sep 17, 2022. It is now read-only.

Commit c91728e

Browse files
committed
Updated region endpoints
1 parent 1ccc503 commit c91728e

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

common/remote/endpoint/provider.go

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ type EndpointProvider interface {
99
}
1010

1111
var endpoints = map[string]string{
12-
"ca-central": "cac",
12+
"montreal": "ymq",
1313

14-
"us-east": "use",
15-
"us-west": "usw",
14+
"washington": "was",
15+
"sanfrancisco": "sfo",
1616

17-
"ap-south": "aps",
18-
"ap-northeast": "apne",
19-
"ap-southeast": "apse",
17+
"mumbai": "bom",
18+
"tokyo": "tyo",
19+
"sydney": "syd",
2020

21-
"eu-west": "euw",
22-
"eu-central": "euc",
23-
"eu-north": "eun",
21+
"stockholm": "sto",
22+
"frankfurt": "fra",
23+
"dublin": "dub",
2424

25-
"sa-east": "sae",
25+
"saopaulo": "sao",
2626
}
2727

2828
type apidEndpointProvider struct{}

svc/cli/cmd/remote_check.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func init() {
4747
remoteCmd.Flags().StringVarP(&configFilepath, "config", "c", "./apid.yaml", "file with config to run")
4848
remoteCmd.Flags().BoolVarP(&showTimings, "timings", "t", false, "output the durations of requests")
4949
remoteCmd.Flags().StringVarP(&apiKey, "key", "k", os.Getenv(apiKeyEnvKey), "apid access key")
50-
remoteCmd.Flags().StringVarP(&region, "region", "r", "us-east", "location to run the tests from")
50+
remoteCmd.Flags().StringVarP(&region, "region", "r", "washington", "location to run the tests from")
5151
}
5252

5353
func remoteRun(cmd *cobra.Command, args []string) error {

0 commit comments

Comments
 (0)