zentol commented on code in PR #22628:
URL: https://github.com/apache/flink/pull/22628#discussion_r1202484203
##########
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:
This will already be logged on error by the rest handler, so I think debug
is fine here because its only relevant for devs, not users.
--
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]