File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
flink-cdc-e2e-tests/src/test/java/com/ververica/cdc/connectors/tests
flink-connector-tidb-cdc/src/test/java/com/ververica/cdc/connectors/tidb Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public class TiDBE2eITCase extends FlinkContainerTestEnvironment {
7171
7272 @ ClassRule
7373 public static final GenericContainer <?> PD =
74- new GenericContainer <>("pingcap/pd:v6.0 .0" )
74+ new GenericContainer <>("pingcap/pd:v6.1 .0" )
7575 .withExposedPorts (PD_PORT )
7676 .withFileSystemBind ("src/test/resources/docker/tidb/pd.toml" , "/pd.toml" )
7777 .withCommand (
@@ -92,7 +92,7 @@ public class TiDBE2eITCase extends FlinkContainerTestEnvironment {
9292
9393 @ ClassRule
9494 public static final GenericContainer <?> TIKV =
95- new GenericContainer <>("pingcap/tikv:v6.0 .0" )
95+ new GenericContainer <>("pingcap/tikv:v6.1 .0" )
9696 .withExposedPorts (TIKV_PORT )
9797 .withFileSystemBind ("src/test/resources/docker/tidb/tikv.toml" , "/tikv.toml" )
9898 .withCommand (
@@ -110,7 +110,7 @@ public class TiDBE2eITCase extends FlinkContainerTestEnvironment {
110110
111111 @ ClassRule
112112 public static final GenericContainer <?> TIDB =
113- new GenericContainer <>("pingcap/tidb:v6.0 .0" )
113+ new GenericContainer <>("pingcap/tidb:v6.1 .0" )
114114 .withExposedPorts (TIDB_PORT )
115115 .withFileSystemBind ("src/test/resources/docker/tidb/tidb.toml" , "/tidb.toml" )
116116 .withCommand (
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ public class TiDBTestBase extends AbstractTestBase {
7272
7373 @ ClassRule
7474 public static final GenericContainer <?> PD =
75- new FixedHostPortGenericContainer <>("pingcap/pd:v6.0 .0" )
75+ new FixedHostPortGenericContainer <>("pingcap/pd:v6.1 .0" )
7676 .withFileSystemBind ("src/test/resources/config/pd.toml" , "/pd.toml" )
7777 .withFixedExposedPort (pdPort , PD_PORT_ORIGIN )
7878 .withCommand (
@@ -92,7 +92,7 @@ public class TiDBTestBase extends AbstractTestBase {
9292
9393 @ ClassRule
9494 public static final GenericContainer <?> TIKV =
95- new FixedHostPortGenericContainer <>("pingcap/tikv:v6.0 .0" )
95+ new FixedHostPortGenericContainer <>("pingcap/tikv:v6.1 .0" )
9696 .withFixedExposedPort (TIKV_PORT_ORIGIN , TIKV_PORT_ORIGIN )
9797 .withFileSystemBind ("src/test/resources/config/tikv.toml" , "/tikv.toml" )
9898 .withCommand (
@@ -110,7 +110,7 @@ public class TiDBTestBase extends AbstractTestBase {
110110
111111 @ ClassRule
112112 public static final GenericContainer <?> TIDB =
113- new GenericContainer <>("pingcap/tidb:v6.0 .0" )
113+ new GenericContainer <>("pingcap/tidb:v6.1 .0" )
114114 .withExposedPorts (TIDB_PORT )
115115 .withFileSystemBind ("src/test/resources/config/tidb.toml" , "/tidb.toml" )
116116 .withCommand (
You can’t perform that action at this time.
0 commit comments