This commit is contained in:
Boy132 2024-06-03 13:46:48 +02:00
parent e22c5c3e0a
commit 6e75c76c60

View File

@ -118,9 +118,9 @@ class AppSettingsCommand extends Command
}
if ($this->variables['QUEUE_CONNECTION'] !== 'sync') {
Artisan::call('p:environment:queue-service', $redisUsed ? [
'--use-redis' => true,
] : []);
Artisan::call('p:environment:queue-service', [
'--use-redis' => $redisUsed,
]);
}
$this->info($this->console->output());
@ -129,7 +129,7 @@ class AppSettingsCommand extends Command
}
/**
* Request connection details and verify them.
* Request redis connection details and verify them.
*/
private function requestRedisSettings(): void
{