58821ebbb4
This revealed an error in our configuration generation in gitlab:gitaly:install rake task. The fix is included
14 lines
303 B
Ruby
14 lines
303 B
Ruby
module Gitlab
|
|
module GitalyClient
|
|
module Util
|
|
class << self
|
|
def repository(repository_storage, relative_path)
|
|
Gitaly::Repository.new(
|
|
storage_name: repository_storage,
|
|
relative_path: relative_path
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|