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

bin/storage shell: force TCP

Summary:
`mysql` has the magic feature of ignoring port arguments and using the socket when connecting to localhost.

This flag makes it not do that.

Test Plan: `./bin/storage shell`, execute `status`, see `Connection: localhost via TCP/IP`.

Reviewers: joshuaspence, #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin

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

authored by

Aviv Eyal and committed by
avivey
68904d94 c27ba19d

+1 -1
+1 -1
src/infrastructure/storage/management/workflow/PhabricatorStorageManagementShellWorkflow.php
··· 31 31 } 32 32 33 33 return phutil_passthru( 34 - 'mysql --default-character-set=utf8 '. 34 + 'mysql --protocol=TCP --default-character-set=utf8 '. 35 35 '-u %s %C -h %s %C', 36 36 $api->getUser(), 37 37 $flag_password,