Commit 7358211e authored by Rémy Coutable's avatar Rémy Coutable

Merge branch '49057-fix-repository-typo' into 'master'

Fix a typo in Gitlab::Git::Repository

See merge request gitlab-org/gitlab-ce!20520
parents b7531f71 1f28f456
......@@ -627,7 +627,7 @@ module Gitlab
def update_branch(branch_name, user:, newrev:, oldrev:)
gitaly_migrate(:operation_user_update_branch) do |is_enabled|
if is_enabled
gitaly_operations_client.user_update_branch(branch_name, user, newrev, oldrev)
gitaly_operation_client.user_update_branch(branch_name, user, newrev, oldrev)
else
OperationService.new(user, self).update_branch(branch_name, newrev, oldrev)
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment