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

Stop purging caches in bin/storage adjust

Summary:
Fixes T6548.

- This workflow doesn't work under reasonable configurations and isn't trivial to fix (see T6548).
- We don't need it; this just makes things a little bit faster if you have to migrate everything (e.g., immediately after T1191) and the installs we know about have generally upgraded by now.
- This keeps kicking PKCS8 keys out of cache which is a pain.

Test Plan: Ran `bin/storage adjust` without it doing an implicit cache purge.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T6548

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

-8
-8
src/infrastructure/storage/management/workflow/PhabricatorStorageManagementWorkflow.php
··· 134 134 135 135 $console->writeOut( 136 136 "%s\n", 137 - pht('Dropping caches, for faster migrations...')); 138 - 139 - $root = dirname(phutil_get_library_root('phabricator')); 140 - $bin = $root.'/bin/cache'; 141 - phutil_passthru('%s purge --purge-all', $bin); 142 - 143 - $console->writeOut( 144 - "%s\n", 145 137 pht('Fixing schema issues...')); 146 138 147 139 $conn = $api->getConn(null);