Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Hotfix][E2E] Update Test Container Version of SeaTunnel engine #5323

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions release-note.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
- [E2E] [Kafka] Fix kafka e2e testcase (#4520)
- [Container Version] Fix risk of unreproducible test cases #4591
- [E2e] [Mysql-cdc] Removing the excess MySqlIncrementalSourceIT e2e reduces the CI time (#4738)
- [E2E] [Common] Update test container version of seatunnel engine (#5323)

## Improve

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public enum TestContainerId {
FLINK_1_16(FLINK, "1.16.0"),
SPARK_2_4(SPARK, "2.4.6"),
SPARK_3_3(SPARK, "3.3.0"),
SEATUNNEL(EngineType.SEATUNNEL, "2.3.1");
SEATUNNEL(EngineType.SEATUNNEL, "dev");

private final EngineType engineType;
private final String version;
Expand Down