Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use error instead of warning when tasks are killed due to inactivity #248

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions karton/system/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def gc_collect_tasks(self) -> None:
and current_time > task.last_update + self.task_dispatched_timeout
):
to_delete.append(task)
self.log.warning(
self.log.error(
"Task %s is in Dispatched state more than %d seconds. "
"Killed. (origin: %s)",
task.uid,
Expand All @@ -116,7 +116,7 @@ def gc_collect_tasks(self) -> None:
and current_time > task.last_update + self.task_started_timeout
):
to_delete.append(task)
self.log.warning(
self.log.error(
"Task %s is in Started state more than %d seconds. "
"Killed. (receiver: %s)",
task.uid,
Expand Down
Loading