@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.

Correct "getActiveBindings()" method name

Summary: This method was incorrectly renamed by D21628. See <https://discourse.phabricator-community.org/t/unable-to-lease-host/4696>.

Test Plan: Looked at it, will deploy etc.

Subscribers: yelirekim, PHID-OPKG-gm6ozazyms6q6i22gyam

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

+1 -1
+1 -1
src/applications/drydock/blueprint/DrydockAlmanacServiceHostBlueprintImplementation.php
··· 242 242 return $this->services; 243 243 } 244 244 245 - private function getActive(array $services) { 245 + private function getActiveBindings(array $services) { 246 246 assert_instances_of($services, 'AlmanacService'); 247 247 $bindings = array_mergev(mpull($services, 'getActiveBindings')); 248 248 return mpull($bindings, null, 'getPHID');