Skip to content

Commit

Permalink
Upgrade toxiproxy docker container version
Browse files Browse the repository at this point in the history
Toxiproxy docker container in version 2.4.0 has arm64 architecture
support, which allows to run tests that use toxiproxy on Macbook Pro M1
  • Loading branch information
Laonel authored and hashhar committed Sep 5, 2022
1 parent a6a107d commit 2133899
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class TestingKuduServer
private static final Integer KUDU_TSERVER_PORT = 7050;
private static final Integer NUMBER_OF_REPLICA = 3;

private static final String TOXIPROXY_IMAGE = "shopify/toxiproxy:2.1.4";
private static final String TOXIPROXY_IMAGE = "ghcr.io/shopify/toxiproxy:2.4.0";
private static final String TOXIPROXY_NETWORK_ALIAS = "toxiproxy";

private final Network network;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void setup()
Network network = Network.newNetwork();
closer.register(network::close);

ToxiproxyContainer proxyServer = new ToxiproxyContainer("shopify/toxiproxy:2.1.0")
ToxiproxyContainer proxyServer = new ToxiproxyContainer("ghcr.io/shopify/toxiproxy:2.4.0")
.withNetwork(network);
closer.register(proxyServer::close);
proxyServer.start();
Expand Down

0 comments on commit 2133899

Please sign in to comment.