Skip to content

Commit 0823fef

Browse files
committed
fix flinkrunner snapshot tag
1 parent 7747c1d commit 0823fef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqrl-testing/sqrl-testing-integration/src/test/java/com/datasqrl/flinkrunner/AbstractITSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class AbstractITSupport {
4646
void startFlink() {
4747
var imgRepo = System.getProperty("flinkrunner.image.repo", "ghcr.io");
4848
var tag = System.getProperty("flinkrunner.version", "latest");
49-
if (!tag.equals("latest")) {
49+
if (!tag.equals("latest") && !tag.toLowerCase().endsWith("snapshot")) {
5050
tag += "-flink-2.1";
5151
}
5252

0 commit comments

Comments
 (0)