Apply eslint/prettier fixes

This commit is contained in:
Daniel Abrao 2024-04-12 08:13:10 -03:00 committed by psychedelicious
parent 3706cf0ad4
commit 8bca7e2aa2

View File

@ -38,7 +38,7 @@ export const addSocketQueueItemStatusChangedEventListener = (startAppListening:
const { queue_item, batch_status, queue_status } = action.payload.data;
// Keep track of the active queue length by summing up pending and in_progress count
const activeQueueLength: number = (queue_status.pending + queue_status.in_progress) || 0;
const activeQueueLength: number = queue_status.pending + queue_status.in_progress || 0;
log.debug(action.payload, `Queue item ${queue_item.item_id} status updated: ${queue_item.status}`);