Show list of non-exited daemons
Summary: This is arguably a more useful view than listing all daemons. Test Plan: Looked at list, only saw daemons that haven't exited Reviewers: vrana, epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3286
This commit is contained in:
@@ -25,8 +25,14 @@ final class PhabricatorDaemonLogListController
|
||||
$pager = new AphrontPagerView();
|
||||
$pager->setOffset($request->getInt('page'));
|
||||
|
||||
$clause = '1 = 1';
|
||||
if ($request->getStr('show') == 'running') {
|
||||
$clause = "`status` != 'exit'";
|
||||
}
|
||||
|
||||
$logs = id(new PhabricatorDaemonLog())->loadAllWhere(
|
||||
'1 = 1 ORDER BY id DESC LIMIT %d, %d',
|
||||
'%Q ORDER BY id DESC LIMIT %d, %d',
|
||||
$clause,
|
||||
$pager->getOffset(),
|
||||
$pager->getPageSize() + 1);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user