mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 05:12:41 +01:00
Lock daemon configuration
Summary: I feel like the daemon configuration should be locked from editing from the web UI, given that much of it won't work unless the daemons are restarted anyway. Test Plan: N/A Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D14867
This commit is contained in:
parent
26ba4e8717
commit
8bacb3da23
1 changed files with 5 additions and 0 deletions
|
@ -22,12 +22,15 @@ final class PhabricatorPHDConfigOptions
|
|||
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 @@ final class PhabricatorPHDConfigOptions
|
|||
'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 @@ final class PhabricatorPHDConfigOptions
|
|||
'Phabricator imports or manages. This option is new and '.
|
||||
'experimental.')),
|
||||
$this->newOption('phd.trace', 'bool', false)
|
||||
->setLocked(true)
|
||||
->setBoolOptions(
|
||||
array(
|
||||
pht('Trace mode'),
|
||||
|
|
Loading…
Reference in a new issue