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

Pull some debugging code back out of "master"

See D19778. This is a workaround for T13179 that landed by mistake.

+3 -3
+1 -1
src/applications/almanac/util/AlmanacKeys.php
··· 63 63 // protocol does not have a mechanism like a "Host" header. 64 64 $username = PhabricatorEnv::getEnvConfig('cluster.instance'); 65 65 if (strlen($username)) { 66 - // return $username; 66 + return $username; 67 67 } 68 68 69 69 $username = PhabricatorEnv::getEnvConfig('diffusion.ssh-user');
+2 -2
src/applications/drydock/interface/command/DrydockSSHCommandInterface.php
··· 30 30 $full_command = call_user_func_array('csprintf', $argv); 31 31 32 32 $flags = array(); 33 - // $flags[] = '-o'; 34 - // $flags[] = 'LogLevel=quiet'; 33 + $flags[] = '-o'; 34 + $flags[] = 'LogLevel=quiet'; 35 35 36 36 $flags[] = '-o'; 37 37 $flags[] = 'StrictHostKeyChecking=no';