diff --git a/src/applications/config/option/PhabricatorPHDConfigOptions.php b/src/applications/config/option/PhabricatorPHDConfigOptions.php --- a/src/applications/config/option/PhabricatorPHDConfigOptions.php +++ b/src/applications/config/option/PhabricatorPHDConfigOptions.php @@ -22,12 +22,15 @@ public function getOptions() { return array( $this->newOption('phd.pid-directory', 'string', '/var/tmp/phd/pid') + ->setLocked(true) ->setDescription( pht('Directory that phd should use to track running daemons.')), $this->newOption('phd.log-directory', 'string', '/var/tmp/phd/log') + ->setLocked(true) ->setDescription( pht('Directory that the daemons should use to store log files.')), $this->newOption('phd.taskmasters', 'int', 4) + ->setLocked(true) ->setSummary(pht('Maximum taskmaster daemon pool size.')) ->setDescription( pht( @@ -35,6 +38,7 @@ 'this can increase the maximum throughput of the task queue. The '. 'pool will automatically scale down when unutilized.')), $this->newOption('phd.verbose', 'bool', false) + ->setLocked(true) ->setBoolOptions( array( pht('Verbose mode'), @@ -59,6 +63,7 @@ 'Phabricator imports or manages. This option is new and '. 'experimental.')), $this->newOption('phd.trace', 'bool', false) + ->setLocked(true) ->setBoolOptions( array( pht('Trace mode'),