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

Don't load unnecessary handle data on "transaction.search"

Summary: Ref T13242. Currently, the transaction query loads handles by default (this is unusual). We don't need them, so turn them off.

Test Plan: No apparent behavioral change, will compare production profiles.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13242

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

+1
+1
src/applications/transactions/conduit/TransactionSearchConduitAPIMethod.php
··· 68 68 $object); 69 69 70 70 $xaction_query 71 + ->needHandles(false) 71 72 ->withObjectPHIDs(array($object->getPHID())) 72 73 ->setViewer($viewer); 73 74