mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
Load configuration after forking
This commit is contained in:
parent
29b83b4453
commit
410310282f
1 changed files with 2 additions and 1 deletions
|
@ -81,7 +81,7 @@ USAGE_TEXT;
|
|||
try {
|
||||
$cmd = $this->command($args);
|
||||
if ($cmd && !in_array($cmd, ["", "conf save-defaults", "daemon"])) {
|
||||
// only certain commands don't require configuration to be loaded
|
||||
// only certain commands don't require configuration to be loaded; daemon loads configuration after forking (if applicable)
|
||||
$this->loadConf();
|
||||
}
|
||||
switch ($cmd) {
|
||||
|
@ -96,6 +96,7 @@ USAGE_TEXT;
|
|||
if ($args['--fork'] !== null) {
|
||||
$this->fork($args['--fork']);
|
||||
}
|
||||
$this->loadConf();
|
||||
Arsse::$obj->get(Service::class)->watch(true);
|
||||
return 0;
|
||||
case "feed refresh":
|
||||
|
|
Loading…
Reference in a new issue