mxm commented on code in PR #666:
URL:
https://github.com/apache/flink-kubernetes-operator/pull/666#discussion_r1319954233
##########
flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/config/FlinkOperatorConfiguration.java:
##########
@@ -220,8 +227,14 @@ private static GenericRetry getRetryConfig(Configuration
conf) {
.toMillis())
.setIntervalMultiplier(
conf.getDouble(
- KubernetesOperatorConfigOptions
- .OPERATOR_RETRY_INTERVAL_MULTIPLIER));
+
KubernetesOperatorConfigOptions.OPERATOR_RETRY_INTERVAL_MULTIPLIER))
+ .setMaxInterval(maxInterval > 0 ? maxInterval :
Long.MAX_VALUE);
Review Comment:
The default value `Long.MAX_VALUE` means, retry as often as you like? Any
value than that means wait at least that amount of time in milliseconds?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]