@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.

Make `bin/aphlict stop` read new config properly

Summary: Ref T10697. I missed this so it isn't reading the new config properly.

Test Plan: Ran `bin/aphlict stop`, saw it read config.

Reviewers: chad, Mnkras

Reviewed By: Mnkras

Subscribers: Mnkras

Maniphest Tasks: T10697

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

+2 -1
+2 -1
src/applications/aphlict/management/PhabricatorAphlictManagementStopWorkflow.php
··· 7 7 $this 8 8 ->setName('stop') 9 9 ->setSynopsis(pht('Stop 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 return $this->executeStopCommand(); 15 16 } 16 17