From 4757ff224c7f20e1f4fcc9333c42c3533d9c9b09 Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 31 Jan 2018 11:21:24 -0800 Subject: [PATCH] (stable) Fix a missing getSSHUser() callsite Summary: See . 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 --- .../diffusion/gitlfs/DiffusionGitLFSAuthenticateWorkflow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/diffusion/gitlfs/DiffusionGitLFSAuthenticateWorkflow.php b/src/applications/diffusion/gitlfs/DiffusionGitLFSAuthenticateWorkflow.php index 41c009455d..56297f4d8b 100644 --- a/src/applications/diffusion/gitlfs/DiffusionGitLFSAuthenticateWorkflow.php +++ b/src/applications/diffusion/gitlfs/DiffusionGitLFSAuthenticateWorkflow.php @@ -84,7 +84,7 @@ final class DiffusionGitLFSAuthenticateWorkflow // This works even if normal HTTP repository operations are not available // on this host, and does not require the user to have a VCS password. - $user = $this->getUser(); + $user = $this->getSSHUser(); $authorization = DiffusionGitLFSTemporaryTokenType::newHTTPAuthorization( $repository,