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-api/src/main/java/org/apache/flink/kubernetes/operator/api/bluegreen/BlueGreenDeploymentType.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@
23
23
* Enumeration of the two possible Flink Blue/Green deployment types. Only one of each type will be
24
24
* present at all times for a particular job.
25
25
*/
26
-
publicenumDeploymentType {
26
+
publicenumBlueGreenDeploymentType {
27
27
/** Identifier for the first or "Blue" deployment type. */
Copy file name to clipboardExpand all lines: flink-kubernetes-operator-api/src/main/java/org/apache/flink/kubernetes/operator/api/spec/FlinkBlueGreenDeploymentConfigOptions.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ public static ConfigOptions.OptionBuilder operatorConfig(String key) {
34
34
}
35
35
36
36
/**
37
-
* NOTE: The string durations need to be in format "{length value}{time unit label}", e.g.
37
+
* NOTE: The string durations need to be in format "{time unit value}{time unit label}", e.g.
38
38
* "123ms", "321 s". If no time unit label is specified, it will be considered as milliseconds.
39
39
* There is no fall back to parse ISO-8601 duration format, until Flink 2.x
40
40
*
@@ -46,7 +46,7 @@ public static ConfigOptions.OptionBuilder operatorConfig(String key) {
46
46
* <li>MINUTES: "m", "min", "minute"
47
47
* <li>SECONDS: "s", "sec", "second"
48
48
* <li>MILLISECONDS: "ms", "milli", "millisecond"
49
-
* <li>MICROSECONDS: "µs", "micro", "microsecond"
49
+
* <li>MICROSECONDS: "us", "micro", "microsecond"
50
50
* <li>NANOSECONDS: "ns", "nano", "nanosecond"
51
51
* </ul>
52
52
*/
@@ -55,19 +55,19 @@ public static ConfigOptions.OptionBuilder operatorConfig(String key) {
55
55
.durationType()
56
56
.defaultValue(Duration.ofMinutes(10))
57
57
.withDescription(
58
-
"The max time to wait in milliseconds for a deployment to become ready before aborting it. Cannot be smaller than 10 minutes.");
58
+
"The max time to wait for a deployment to become ready before aborting it.");
Copy file name to clipboardExpand all lines: flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/controller/FlinkBlueGreenDeploymentController.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -112,7 +112,7 @@ public UpdateControl<FlinkBlueGreenDeployment> reconcile(
Copy file name to clipboardExpand all lines: flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/controller/FlinkBlueGreenDeployments.java
Copy file name to clipboardExpand all lines: flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/controller/bluegreen/BlueGreenContext.java
Copy file name to clipboardExpand all lines: flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/controller/bluegreen/BlueGreenDeploymentService.java
Copy file name to clipboardExpand all lines: flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/controller/bluegreen/handlers/ActiveStateHandler.java
0 commit comments