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

Remove deprecated "bin/phd ... --gently"

Summary:
Remove deprecated `--gently` parameter for `bin/phd ...` commands. It's been deprecated for more than six years.
Followup to rPb99c240aa3749f0f3042fdf8c2a7553a39dee7c1.

Test Plan: Run e.g. `./bin/phd restart --gently`, now get `Usage Exception: Argument "--gently" is unrecognized.`

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26474

-8
-4
src/applications/daemon/management/PhabricatorDaemonManagementRestartWorkflow.php
··· 26 26 'Stop all daemon processes on this host, even if they belong '. 27 27 'to another instance.'), 28 28 ), 29 - array( 30 - 'name' => 'gently', 31 - 'help' => pht('Deprecated. Has no effect.'), 32 - ), 33 29 $this->getAutoscaleReserveArgument(), 34 30 )); 35 31 }
-4
src/applications/daemon/management/PhabricatorDaemonManagementStopWorkflow.php
··· 23 23 'Stop all daemon processes on this host, even if they belong '. 24 24 'to another instance.'), 25 25 ), 26 - array( 27 - 'name' => 'gently', 28 - 'help' => pht('Deprecated. Has no effect.'), 29 - ), 30 26 )); 31 27 } 32 28