Skip to content

Commit 35ab017

Browse files
committed
wip: fix running artisan commands in bundle
1 parent 15d04bd commit 35ab017

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/QueueWorker.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ public function up(string|QueueConfig $config): void
2424
throw new \InvalidArgumentException("Invalid queue configuration alias [$config]");
2525
}
2626

27-
$this->childProcess->php(
27+
$this->childProcess->artisan(
2828
[
29-
'-d',
30-
"memory_limit={$config->memoryLimit}M",
31-
'artisan',
29+
// '-d',
30+
// "memory_limit={$config->memoryLimit}M",
31+
// 'artisan',
3232
'queue:work',
3333
"--name={$config->alias}",
3434
'--queue='.implode(',', $config->queuesToConsume),

0 commit comments

Comments
 (0)