@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix `./bin/aphlict status`

Summary: Fixes T10844. After recent changes to Aphlict (T6915 and T10697), `./bin/status` needs to be aware of the configuration file. As such, it is now necessary to run `./bin/aphlict status --config /path/to/config.json` rather than `./bin/aphlict status`.

Test Plan: Ran `./bin/aphlict start ...` and `./bin/aphlict status` and saw "Aphlict (`$PID`) is running".

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin

Maniphest Tasks: T10844

Differential Revision: https://secure.phabricator.com/D15776

+2 -1
+2 -1
src/applications/aphlict/management/PhabricatorAphlictManagementStatusWorkflow.php
··· 7 7 $this 8 8 ->setName('status') 9 9 ->setSynopsis(pht('Show the status of the notification server.')) 10 - ->setArguments(array()); 10 + ->setArguments($this->getLaunchArguments()); 11 11 } 12 12 13 13 public function execute(PhutilArgumentParser $args) { 14 + $this->parseLaunchArguments($args); 14 15 $console = PhutilConsole::getConsole(); 15 16 $pid = $this->getPID(); 16 17