Skip to content

Commit

Permalink
don't log job name unless it has one
Browse files Browse the repository at this point in the history
  • Loading branch information
warriordog committed Oct 8, 2024
1 parent 5171ba7 commit a5316c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/queue/QueueProcessorService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class QueueProcessorService implements OnApplicationShutdown {
if (!job) return '?';

return {
name: job.name,
name: job.name || undefined,
info: getJobInfo(job),
failedReason: job.failedReason || undefined,
data: job.data,
Expand Down

0 comments on commit a5316c0

Please sign in to comment.