gitlab-org--gitlab-foss/lib/gitlab/git/repository_mirroring.rb
Zeger-Jan van de Weg 31749779da
Remove feature flag for FindAllRemoteBranches
Acceptance testing done through:
https://gitlab.com/gitlab-org/gitaly/issues/1312

Relatively short AT period, but given its not a hard RPC, nor anything
funky is going on, I felt that this was decent enough to remove the
feature flag.

Closes https://gitlab.com/gitlab-org/gitaly/issues/1243
2018-08-16 09:42:31 +02:00

9 lines
180 B
Ruby

module Gitlab
module Git
module RepositoryMirroring
def remote_branches(remote_name)
gitaly_ref_client.remote_branches(remote_name)
end
end
end
end