Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/check/PhabricatorSetupCheckDaemons.php
| Show All 25 Lines | if (!$task_daemon) { | ||||
| 'and running builds).'. | 'and running builds).'. | ||||
| "\n\n". | "\n\n". | ||||
| 'Use %s to start daemons. See %s for more information.', | 'Use %s to start daemons. See %s for more information.', | ||||
| phutil_tag('tt', array(), 'bin/phd start'), | phutil_tag('tt', array(), 'bin/phd start'), | ||||
| phutil_tag( | phutil_tag( | ||||
| 'a', | 'a', | ||||
| array( | array( | ||||
| 'href' => $doc_href, | 'href' => $doc_href, | ||||
| 'target' => '_blank' | 'target' => '_blank', | ||||
| ), | ), | ||||
| pht('Managing Daemons with phd'))); | pht('Managing Daemons with phd'))); | ||||
| $this->newIssue('daemons.not-running') | $this->newIssue('daemons.not-running') | ||||
| ->setShortName(pht('Daemons Not Running')) | ->setShortName(pht('Daemons Not Running')) | ||||
| ->setName(pht('Phabricator Daemons Are Not Running')) | ->setName(pht('Phabricator Daemons Are Not Running')) | ||||
| ->setSummary($summary) | ->setSummary($summary) | ||||
| ->setMessage($message) | ->setMessage($message) | ||||
| ▲ Show 20 Lines • Show All 52 Lines • ▼ Show 20 Lines | foreach ($all_daemons as $daemon) { | ||||
| phutil_tag('tt', array(), substr($daemon->getEnvHash(), 0, 12)), | phutil_tag('tt', array(), substr($daemon->getEnvHash(), 0, 12)), | ||||
| phutil_tag('tt', array(), substr($environment_hash, 0, 12)), | phutil_tag('tt', array(), substr($environment_hash, 0, 12)), | ||||
| phutil_tag('tt', array(), 'bin/phd restart'), | phutil_tag('tt', array(), 'bin/phd restart'), | ||||
| phutil_tag( | phutil_tag( | ||||
| 'a', | 'a', | ||||
| array( | array( | ||||
| 'href' => '/daemon/', | 'href' => '/daemon/', | ||||
| 'target' => '_blank' | 'target' => '_blank', | ||||
| ), | ), | ||||
| pht('Daemon Console')), | pht('Daemon Console')), | ||||
| phutil_tag( | phutil_tag( | ||||
| 'a', | 'a', | ||||
| array( | array( | ||||
| 'href' => $doc_href, | 'href' => $doc_href, | ||||
| 'target' => '_blank' | 'target' => '_blank', | ||||
| ), | ), | ||||
| pht('Managing Daemons with phd')), | pht('Managing Daemons with phd')), | ||||
| phutil_tag('tt', array(), 'PHABRICATOR_ENV'), | phutil_tag('tt', array(), 'PHABRICATOR_ENV'), | ||||
| phutil_tag('tt', array(), 'PHABRICATOR_ENV'), | phutil_tag('tt', array(), 'PHABRICATOR_ENV'), | ||||
| phutil_tag('tt', array(), 'phabricator/conf/local/local.json'), | phutil_tag('tt', array(), 'phabricator/conf/local/local.json'), | ||||
| phutil_tag('tt', array(), 'bin/config'), | phutil_tag('tt', array(), 'bin/config'), | ||||
| phutil_tag('tt', array(), 'phabricator/conf/local/local.json')); | phutil_tag('tt', array(), 'phabricator/conf/local/local.json')); | ||||
| Show All 11 Lines | |||||