Skip to content

Commit 01880ac

Browse files
authored
[Task Manager] Change info message "ran out Available Workers" to debug (#62083)
resolves #54920 The scenario this message warns about is actually something that we should expect to happen in a busy system - and we back off as we should. But there's no reason it needs to be info-logged, especially as it seems somewhat frightening. Changing to debug, so in case we do need this for diagnostic purposes, we can still get it via logging config.
1 parent 42fbdc1 commit 01880ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugins/task_manager/server/task_manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ export async function claimAvailableTasks(
411411
}
412412
} else {
413413
performance.mark('claimAvailableTasks.noAvailableWorkers');
414-
logger.info(
414+
logger.debug(
415415
`[Task Ownership]: Task Manager has skipped Claiming Ownership of available tasks at it has ran out Available Workers.`
416416
);
417417
}

0 commit comments

Comments
 (0)