Fixed 'lifetime' parameter for queue on installation.
This commit is contained in:
parent
89fc49582c
commit
a8019e20a8
1 changed files with 4 additions and 1 deletions
|
|
@ -310,7 +310,7 @@ class InstallCommand extends Command
|
|||
'use_queue' => false,
|
||||
'host' => null,
|
||||
'name' => null,
|
||||
'lifetime' => 600
|
||||
'lifetime' => 600,
|
||||
];
|
||||
|
||||
if (!$input->getOption('queue-use')) {
|
||||
|
|
@ -319,6 +319,9 @@ class InstallCommand extends Command
|
|||
|
||||
$queueConfig = [
|
||||
'use_queue' => true,
|
||||
'host' => null,
|
||||
'name' => null,
|
||||
'lifetime' => 600,
|
||||
];
|
||||
|
||||
$queueConfig['host'] = $input->getOption('queue-host');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue