gyfora commented on code in PR #666: URL: https://github.com/apache/flink-kubernetes-operator/pull/666#discussion_r1321408754
########## 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: Oh I see what you meant, this wouldn't affect us as we are not using the `@GradualRetry` annotation, that is specific to that. In any case I removed this to be less confusing -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org