davidradl commented on code in PR #27463:
URL: https://github.com/apache/flink/pull/27463#discussion_r2720760347
##########
flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobResult.java:
##########
@@ -75,8 +75,8 @@ private JobResult(
checkArgument(netRuntime >= 0, "netRuntime must be greater than or
equals 0");
checkArgument(
- jobStatus == null || jobStatus.isGloballyTerminalState(),
- "jobStatus must be globally terminal or unknow(null)");
+ jobStatus == null || jobStatus.isTerminalState(),
+ "jobStatus must be terminal or unknown(null)");
Review Comment:
What does `unknown(null)` mean? Can we say `null`?
--
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]