YARN-10718. Fix CapacityScheduler#initScheduler log error. Contributed by Qi Zhu.

This commit is contained in:
Peter Bacsko 2021-03-31 10:55:14 +02:00
parent da4ceba4aa
commit ff6ec20d84

View File

@ -393,9 +393,9 @@ void initScheduler(Configuration configuration) throws
}
LOG.info("Initialized CapacityScheduler with " + "calculator="
+ getResourceCalculator().getClass() + ", " + "minimumAllocation=<"
+ getMinimumResourceCapability() + ">, " + "maximumAllocation=<"
+ getMaximumResourceCapability() + ">, " + "asynchronousScheduling="
+ getResourceCalculator().getClass() + ", " + "minimumAllocation="
+ getMinimumResourceCapability() + ", " + "maximumAllocation="
+ getMaximumResourceCapability() + ", " + "asynchronousScheduling="
+ scheduleAsynchronously + ", " + "asyncScheduleInterval="
+ asyncScheduleInterval + "ms" + ",multiNodePlacementEnabled="
+ multiNodePlacementEnabled);