mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-29 13:14:45 +02:00
Merge pull request #320 from Boy132/fix/artisan-call
Fix artisan call in AppSettingsCommand
This commit is contained in:
commit
51b217571b
@ -118,7 +118,9 @@ class AppSettingsCommand extends Command
|
||||
}
|
||||
|
||||
if ($this->variables['QUEUE_CONNECTION'] !== 'sync') {
|
||||
Artisan::call('p:environment:queue-service', $redisUsed ? ['--use-redis'] : []);
|
||||
Artisan::call('p:environment:queue-service', [
|
||||
'--use-redis' => $redisUsed,
|
||||
]);
|
||||
}
|
||||
|
||||
$this->info($this->console->output());
|
||||
@ -127,7 +129,7 @@ class AppSettingsCommand extends Command
|
||||
}
|
||||
|
||||
/**
|
||||
* Request connection details and verify them.
|
||||
* Request redis connection details and verify them.
|
||||
*/
|
||||
private function requestRedisSettings(): void
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user