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

Minor, use the same connection throughout applyPatchSQL() -- previously we hit caches, but no longer after D2342.

+3 -1
+3 -1
src/infrastructure/setup/storage/management/PhabricatorStorageManagementAPI.php
··· 176 176 $queries = preg_split('/;\s+/', $sql); 177 177 $queries = array_filter($queries); 178 178 179 + $conn = $this->getConn('meta_data', $select_database = false); 180 + 179 181 foreach ($queries as $query) { 180 182 $query = str_replace('{$NAMESPACE}', $this->namespace, $query); 181 183 queryfx( 182 - $this->getConn('meta_data', $select_database = false), 184 + $conn, 183 185 '%Q', 184 186 $query); 185 187 }