do not use status as a param in logs - use step_status and task_status (#1705)

This commit is contained in:
Shuchang Zheng 2025-02-03 22:28:44 +08:00 committed by GitHub
parent 0fff7637a2
commit eb0d4db7ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -685,7 +685,7 @@ class BaseTaskBlock(Block):
LOG.warning(
f"Task failed with status {updated_task.status}{retry_message}",
task_id=updated_task.task_id,
status=updated_task.status,
task_status=updated_task.status,
workflow_run_id=workflow_run_id,
workflow_id=workflow.workflow_id,
organization_id=workflow_run.organization_id,