dmvk commented on code in PR #22628:
URL: https://github.com/apache/flink/pull/22628#discussion_r1202135895
##########
flink-runtime/src/main/java/org/apache/flink/runtime/dispatcher/Dispatcher.java:
##########
@@ -1182,7 +1182,10 @@ public CompletableFuture<Acknowledge>
updateJobResourceRequirements(
getMainThreadExecutor())
.whenComplete(
(ack, error) -> {
- log.debug("Failed to update requirements for job
{}.", jobId, error);
+ if (error != null) {
+ log.debug(
Review Comment:
🙈 should the log level be different as well?
--
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]