Skip to content

Commit ffad3f1

Browse files
committed
Add debug for store new batch
1 parent 50626ea commit ffad3f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Repositories/RedisBatchRepository.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public function store(PendingBatch $batch)
116116
Redis::connection(config('queue.batching.redis_connection', 'default'))->set("batch:{$id}", json_encode($batchData));
117117
Redis::connection(config('queue.batching.redis_connection', 'default'))->rpush('batches_list', $id); // Add the batch ID to the list
118118

119-
$this->debug("store method - new batch created with id ({$id})");
119+
$this->debug("store method - new batch created with id ({$id}) and name ({$batch->name})");
120120

121121
return $this->find($id);
122122
}

0 commit comments

Comments
 (0)