Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.

Commit a5316c0

Browse files
committed
don't log job name unless it has one
1 parent 5171ba7 commit a5316c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/backend/src/queue/QueueProcessorService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export class QueueProcessorService implements OnApplicationShutdown {
145145
if (!job) return '?';
146146

147147
return {
148-
name: job.name,
148+
name: job.name || undefined,
149149
info: getJobInfo(job),
150150
failedReason: job.failedReason || undefined,
151151
data: job.data,

0 commit comments

Comments
 (0)