Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
02bc717f
Commit
02bc717f
authored
Sep 14, 2016
by
Alejandro Rodríguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update references to deprecated `repos_path` configuration key to avoid
errors on updates from older versions
parent
4326690f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
db/migrate/20140502125220_migrate_repo_size.rb
db/migrate/20140502125220_migrate_repo_size.rb
+4
-1
lib/gitlab/import_export/repo_restorer.rb
lib/gitlab/import_export/repo_restorer.rb
+0
-4
No files found.
db/migrate/20140502125220_migrate_repo_size.rb
View file @
02bc717f
# rubocop:disable all
class
MigrateRepoSize
<
ActiveRecord
::
Migration
DOWNTIME
=
false
def
up
project_data
=
execute
(
'SELECT projects.id, namespaces.path AS namespace_path, projects.path AS project_path FROM projects LEFT JOIN namespaces ON projects.namespace_id = namespaces.id'
)
project_data
.
each
do
|
project
|
id
=
project
[
'id'
]
namespace_path
=
project
[
'namespace_path'
]
||
''
path
=
File
.
join
(
Gitlab
.
config
.
gitlab_shell
.
repos_path
,
namespace_path
,
project
[
'project_path'
]
+
'.git'
)
repos_path
=
Gitlab
.
config
.
gitlab_shell
[
'repos_path'
]
||
Gitlab
.
config
.
repositories
.
storages
.
default
path
=
File
.
join
(
repos_path
,
namespace_path
,
project
[
'project_path'
]
+
'.git'
)
begin
repo
=
Gitlab
::
Git
::
Repository
.
new
(
path
)
...
...
lib/gitlab/import_export/repo_restorer.rb
View file @
02bc717f
...
...
@@ -22,10 +22,6 @@ module Gitlab
private
def
repos_path
Gitlab
.
config
.
gitlab_shell
.
repos_path
end
def
path_to_repo
@project
.
repository
.
path_to_repo
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment