Skip to content

Commit 1e31ddf

Browse files
committed
ecr pull through cache
1 parent 5f6084a commit 1e31ddf

14 files changed

+14
-14
lines changed

mcp-spring/mcp-spring-webflux/src/test/java/io/modelcontextprotocol/client/WebClientStreamableHttpAsyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class WebClientStreamableHttpAsyncClientTests extends AbstractMcpAsyncCli
1919

2020
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2121
@SuppressWarnings("resource")
22-
GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
22+
GenericContainer<?> container = new GenericContainer<>("docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
2323
.withCommand("node dist/index.js streamableHttp")
2424
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
2525
.withExposedPorts(3001)

mcp-spring/mcp-spring-webflux/src/test/java/io/modelcontextprotocol/client/WebClientStreamableHttpSyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class WebClientStreamableHttpSyncClientTests extends AbstractMcpSyncClien
1919

2020
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2121
@SuppressWarnings("resource")
22-
GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
22+
GenericContainer<?> container = new GenericContainer<>("412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
2323
.withCommand("node dist/index.js streamableHttp")
2424
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
2525
.withExposedPorts(3001)

mcp-spring/mcp-spring-webflux/src/test/java/io/modelcontextprotocol/client/WebFluxSseMcpAsyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class WebFluxSseMcpAsyncClientTests extends AbstractMcpAsyncClientTests {
2626

2727
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2828
@SuppressWarnings("resource")
29-
GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
29+
GenericContainer<?> container = new GenericContainer<>("docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
3030
.withCommand("node dist/index.js sse")
3131
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
3232
.withExposedPorts(3001)

mcp-spring/mcp-spring-webflux/src/test/java/io/modelcontextprotocol/client/WebFluxSseMcpSyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class WebFluxSseMcpSyncClientTests extends AbstractMcpSyncClientTests {
2626

2727
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2828
@SuppressWarnings("resource")
29-
GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
29+
GenericContainer<?> container = new GenericContainer<>("docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
3030
.withCommand("node dist/index.js sse")
3131
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
3232
.withExposedPorts(3001)

mcp-spring/mcp-spring-webflux/src/test/java/io/modelcontextprotocol/client/transport/WebFluxSseClientTransportTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class WebFluxSseClientTransportTests {
4242
static String host = "http://localhost:3001";
4343

4444
@SuppressWarnings("resource")
45-
GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
45+
GenericContainer<?> container = new GenericContainer<>("docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
4646
.withCommand("node dist/index.js sse")
4747
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
4848
.withExposedPorts(3001)

mcp-test/src/main/java/io/modelcontextprotocol/client/AbstractMcpAsyncClientResiliencyTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public abstract class AbstractMcpAsyncClientResiliencyTests {
4848

4949
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
5050
@SuppressWarnings("resource")
51-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
51+
static GenericContainer<?> container = new GenericContainer<>("docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
5252
.withCommand("node dist/index.js streamableHttp")
5353
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
5454
.withNetwork(network)

mcp/src/test/java/io/modelcontextprotocol/client/AbstractMcpAsyncClientResiliencyTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public abstract class AbstractMcpAsyncClientResiliencyTests {
4949

5050
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
5151
@SuppressWarnings("resource")
52-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
52+
static GenericContainer<?> container = new GenericContainer<>("docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
5353
.withCommand("node dist/index.js streamableHttp")
5454
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
5555
.withNetwork(network)

mcp/src/test/java/io/modelcontextprotocol/client/HttpClientStreamableHttpAsyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class HttpClientStreamableHttpAsyncClientTests extends AbstractMcpAsyncCl
1818

1919
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2020
@SuppressWarnings("resource")
21-
GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
21+
GenericContainer<?> container = new GenericContainer<>("docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
2222
.withCommand("node dist/index.js streamableHttp")
2323
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
2424
.withExposedPorts(3001)

mcp/src/test/java/io/modelcontextprotocol/client/HttpClientStreamableHttpSyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class HttpClientStreamableHttpSyncClientTests extends AbstractMcpSyncClie
1818

1919
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2020
@SuppressWarnings("resource")
21-
GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
21+
GenericContainer<?> container = new GenericContainer<>("docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
2222
.withCommand("node dist/index.js streamableHttp")
2323
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
2424
.withExposedPorts(3001)

mcp/src/test/java/io/modelcontextprotocol/client/HttpSseMcpAsyncClientLostConnectionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class HttpSseMcpAsyncClientLostConnectionTests {
3838

3939
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
4040
@SuppressWarnings("resource")
41-
static GenericContainer<?> container = new GenericContainer<>("docker.io/tzolov/mcp-everything-server:v2")
41+
static GenericContainer<?> container = new GenericContainer<>("docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
4242
.withCommand("node dist/index.js sse")
4343
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
4444
.withNetwork(network)

0 commit comments

Comments
 (0)