don't log job name unless it has one
(cherry picked from commit a5316c06ed770b60f7b4c7ff5aa8c71cc0558db7)
This commit is contained in:
parent
33eb3fcfc5
commit
d0211c3cea
|
@ -143,7 +143,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,
|
||||
|
|
Loading…
Reference in New Issue