Commit ed58ff56 authored by Stan Hu's avatar Stan Hu

Rename name -> disk_path in create_repository

With hashed storage, the project name may not necessarily be the project
name, so rename the variable to make it clear.
parent 52e0a367
......@@ -67,14 +67,14 @@ module Gitlab
# Init new repository
#
# storage - the shard key
# name - project disk path
# disk_path - project disk path
# gl_project_name - project name
#
# Ex.
# create_repository("default", "path/to/gitlab-ci", "gitlab/gitlab-ci")
#
def create_repository(storage, name, gl_project_name)
relative_path = name.dup
def create_repository(storage, disk_path, gl_project_name)
relative_path = disk_path.dup
relative_path << '.git' unless relative_path.end_with?('.git')
repository = Gitlab::Git::Repository.new(storage, relative_path, '', gl_project_name)
......@@ -82,7 +82,7 @@ module Gitlab
true
rescue => err # Once the Rugged codes gets removes this can be improved
Rails.logger.error("Failed to add repository #{storage}/#{name}: #{err}")
Rails.logger.error("Failed to add repository #{storage}/#{disk_path}: #{err}")
false
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