tillrohrmann commented on a change in pull request #15736:
URL: https://github.com/apache/flink/pull/15736#discussion_r619323704
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adaptive/Executing.java
##########
@@ -281,9 +283,9 @@ void goToFailing(
static final class FailureResult {
@Nullable private final Duration backoffTime;
- @Nullable private final Throwable failureCause;
+ private final Throwable failureCause;
- private FailureResult(@Nullable Duration backoffTime, @Nullable
Throwable failureCause) {
+ private FailureResult(Throwable failureCause, @Nullable Duration
backoffTime) {
Review comment:
I think it applies. I will add a safety net.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]