afedulov commented on code in PR #711:
URL:
https://github.com/apache/flink-kubernetes-operator/pull/711#discussion_r1400542478
##########
flink-autoscaler/src/main/java/org/apache/flink/autoscaler/ScalingTracking.java:
##########
@@ -142,9 +142,11 @@ public double
getMaxRestartTimeSecondsOrDefault(Configuration conf) {
}
}
}
+ long restartTimeFromConfig =
conf.get(AutoScalerOptions.RESTART_TIME).toSeconds();
+ long maxRestartTimeFromConfig =
conf.get(AutoScalerOptions.MAX_RESTART_TIME).toSeconds();
return maxRestartTime == -1
? restartTimeFromConfig
Review Comment:
Synced with Max offline - we decided to rename the option to
`TRACKED_RESTART_TIME_LIMIT` to make the scope clear.
--
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]