You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/validation/DefaultValidator.java
Copy file name to clipboardExpand all lines: flink-kubernetes-operator/src/test/java/org/apache/flink/kubernetes/operator/validation/DefaultValidatorTest.java
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -483,6 +483,12 @@ public void testValidationWithoutDefaultConfig() {
483
483
484
484
testError(dep -> dep.getSpec().setFlinkVersion(null), "Flink Version must be defined.");
485
485
486
+
testError(
487
+
dep -> dep.getSpec().setFlinkVersion(FlinkVersion.v1_14),
0 commit comments