Skip to content

Commit

Permalink
chore: build installer on arm mac
Browse files Browse the repository at this point in the history
  • Loading branch information
karenc-bq committed Jul 11, 2024
1 parent 973d0ef commit 43023dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ private void setupTestContainer(final Network network) throws InterruptedExcepti
.withEnv("AWS_SECRET_ACCESS_KEY", SECRET_ACCESS_KEY)
.withEnv("AWS_SESSION_TOKEN", SESSION_TOKEN)
.withEnv("RDS_ENDPOINT", ENDPOINT == null ? "" : ENDPOINT)
.withEnv("RDS_REGION", REGION == null ? "" : "us-east-2")
.withEnv("RDS_REGION", REGION == null ? "us-east-2" : REGION)
.withEnv("TOXIPROXY_CLUSTER_NETWORK_ALIAS", "toxiproxy-instance-cluster")
.withEnv("TOXIPROXY_RO_CLUSTER_NETWORK_ALIAS", "toxiproxy-ro-instance-cluster")
.withEnv("PROXIED_DOMAIN_NAME_SUFFIX", PROXIED_DOMAIN_NAME_SUFFIX)
Expand Down

0 comments on commit 43023dc

Please sign in to comment.