We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c88afd5 commit 19b6b79Copy full SHA for 19b6b79
src/Core/Scheduler.php
@@ -31,7 +31,7 @@ public static function schedule(Schedule $schedule)
31
$schedule->call(function () use ($schedulableQueue, $scheduleConfig) {
32
$className = $schedulableQueue->class_name;
33
34
- $lockKey = 'QUEUE_LOCK_' . $schedulableQueue->class_name . '_' . date('Y-m-d-H-i');
+ $lockKey = 'QUEUE_LOCK_' . $schedulableQueue->name . '_' . date('Y-m-d-H-i');
35
36
if (\Cache::has($lockKey)) {
37
return;
@@ -57,4 +57,4 @@ public static function schedule(Schedule $schedule)
57
}
58
59
60
-}
+}
0 commit comments