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

add user to some log entries #1083

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion gateway/api/management/commands/schedule_queued_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,5 @@ def handle(self, *args, **options):
job.compute_resource = backup_resource
job.ray_job_id = backup_ray_job_id

logger.info("Executing %s", job)
logger.info("Executing %s of %s", job, job.author)
logger.info("%s are scheduled for execution.", len(jobs))
3 changes: 2 additions & 1 deletion gateway/api/management/commands/update_jobs_statuses.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ def handle(self, *args, **options):

if job_status != job.status:
logger.info(
"Job [%s] status changed from [%s] to [%s]",
"Job [%s] of [%s] changed from [%s] to [%s]",
job.id,
job.author,
job.status,
job_status,
)
Expand Down