@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix PhabricatorWorkerTriggerQuery method visibility

Summary: I got these wrong and the test didn't trigger for some reason that I haven't looked into.

Test Plan: `arc unit --everything`

Reviewers: hach-que, btrahan

Reviewed By: btrahan

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D11453

+2 -2
+2 -2
src/infrastructure/daemon/workers/query/PhabricatorWorkerTriggerQuery.php
··· 67 67 return $this; 68 68 } 69 69 70 - public function nextPage(array $page) { 70 + protected function nextPage(array $page) { 71 71 // NOTE: We don't implement paging because we don't currently ever need 72 72 // it and paging ORDER_EXCUTION is a hassle. 73 73 throw new PhutilMethodNotImplementedException(); 74 74 } 75 75 76 - public function loadPage() { 76 + protected function loadPage() { 77 77 $task_table = new PhabricatorWorkerTrigger(); 78 78 79 79 $conn_r = $task_table->establishConnection('r');