Skip to content

Commit d896c4c

Browse files
committed
sed again
1 parent af3baf4 commit d896c4c

13 files changed

+13
-13
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
@@ -20,7 +20,7 @@ public class WebClientStreamableHttpAsyncClientTests extends AbstractMcpAsyncCli
2020
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2121
@SuppressWarnings("resource")
2222
GenericContainer<?> container = new GenericContainer<>(
23-
"docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
23+
"412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
2424
.withCommand("node dist/index.js streamableHttp")
2525
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
2626
.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
@@ -27,7 +27,7 @@ class WebFluxSseMcpAsyncClientTests extends AbstractMcpAsyncClientTests {
2727
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2828
@SuppressWarnings("resource")
2929
GenericContainer<?> container = new GenericContainer<>(
30-
"docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
30+
"412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
3131
.withCommand("node dist/index.js sse")
3232
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
3333
.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
@@ -27,7 +27,7 @@ class WebFluxSseMcpSyncClientTests extends AbstractMcpSyncClientTests {
2727
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2828
@SuppressWarnings("resource")
2929
GenericContainer<?> container = new GenericContainer<>(
30-
"docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
30+
"412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
3131
.withCommand("node dist/index.js sse")
3232
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
3333
.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
@@ -43,7 +43,7 @@ class WebFluxSseClientTransportTests {
4343

4444
@SuppressWarnings("resource")
4545
GenericContainer<?> container = new GenericContainer<>(
46-
"docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
46+
"412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
4747
.withCommand("node dist/index.js sse")
4848
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
4949
.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
@@ -49,7 +49,7 @@ public abstract class AbstractMcpAsyncClientResiliencyTests {
4949
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
5050
@SuppressWarnings("resource")
5151
static GenericContainer<?> container = new GenericContainer<>(
52-
"docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
52+
"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/AbstractMcpAsyncClientResiliencyTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public abstract class AbstractMcpAsyncClientResiliencyTests {
5050
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
5151
@SuppressWarnings("resource")
5252
static GenericContainer<?> container = new GenericContainer<>(
53-
"docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
53+
"412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
5454
.withCommand("node dist/index.js streamableHttp")
5555
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
5656
.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
@@ -19,7 +19,7 @@ public class HttpClientStreamableHttpAsyncClientTests extends AbstractMcpAsyncCl
1919
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2020
@SuppressWarnings("resource")
2121
GenericContainer<?> container = new GenericContainer<>(
22-
"docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
22+
"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/src/test/java/io/modelcontextprotocol/client/HttpClientStreamableHttpSyncClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class HttpClientStreamableHttpSyncClientTests extends AbstractMcpSyncClie
1919
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2020
@SuppressWarnings("resource")
2121
GenericContainer<?> container = new GenericContainer<>(
22-
"docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
22+
"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/src/test/java/io/modelcontextprotocol/client/HttpSseMcpAsyncClientLostConnectionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class HttpSseMcpAsyncClientLostConnectionTests {
3939
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
4040
@SuppressWarnings("resource")
4141
static GenericContainer<?> container = new GenericContainer<>(
42-
"docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
42+
"412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
4343
.withCommand("node dist/index.js sse")
4444
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
4545
.withNetwork(network)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class HttpSseMcpAsyncClientTests extends AbstractMcpAsyncClientTests {
2424
// Uses the https://github.com/tzolov/mcp-everything-server-docker-image
2525
@SuppressWarnings("resource")
2626
GenericContainer<?> container = new GenericContainer<>(
27-
"docker.io/412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
27+
"412335208158.dkr.ecr.us-east-1.amazonaws.com/docker-hub/tzolov/mcp-everything-server:v2")
2828
.withCommand("node dist/index.js sse")
2929
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
3030
.withExposedPorts(3001)

0 commit comments

Comments
 (0)