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

Fix a missing getSSHUser() callsite

Summary:
See <https://discourse.phabricator-community.org/t/after-upgrade-git-lfs-push-ends-up-in-call-to-undefined-method-on-diffusion-git-lfs-authenticate-workflow/1047/1>.

I renamed this method in D18912 but missed this callsite since the workflow doesn't live alongside the other ones.

Test Plan: Ran `git push` in an LFS repository over SSH. Before: fatal; after: clean push.

Reviewers: amckinley

Reviewed By: amckinley

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

+1 -1
+1 -1
src/applications/diffusion/gitlfs/DiffusionGitLFSAuthenticateWorkflow.php
··· 84 84 // This works even if normal HTTP repository operations are not available 85 85 // on this host, and does not require the user to have a VCS password. 86 86 87 - $user = $this->getUser(); 87 + $user = $this->getSSHUser(); 88 88 89 89 $authorization = DiffusionGitLFSTemporaryTokenType::newHTTPAuthorization( 90 90 $repository,