Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/option/PhabricatorPHDConfigOptions.php
| Show All 15 Lines | final class PhabricatorPHDConfigOptions | ||||
| } | } | ||||
| public function getGroup() { | public function getGroup() { | ||||
| return 'core'; | return 'core'; | ||||
| } | } | ||||
| public function getOptions() { | public function getOptions() { | ||||
| return array( | 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') | $this->newOption('phd.log-directory', 'string', '/var/tmp/phd/log') | ||||
| ->setLocked(true) | ->setLocked(true) | ||||
| ->setDescription( | ->setDescription( | ||||
| pht('Directory that the daemons should use to store log files.')), | pht('Directory that the daemons should use to store log files.')), | ||||
| $this->newOption('phd.taskmasters', 'int', 4) | $this->newOption('phd.taskmasters', 'int', 4) | ||||
| ->setLocked(true) | ->setLocked(true) | ||||
| ->setSummary(pht('Maximum taskmaster daemon pool size.')) | ->setSummary(pht('Maximum taskmaster daemon pool size.')) | ||||
| ->setDescription( | ->setDescription( | ||||
| ▲ Show 20 Lines • Show All 70 Lines • Show Last 20 Lines | |||||