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
597e6190
Commit
597e6190
authored
Aug 01, 2017
by
Gabriel Mazetto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename ensure_dir_exist -> ensure_storage_path_exist
parent
07b574b4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
app/models/concerns/storage/legacy_project.rb
app/models/concerns/storage/legacy_project.rb
+1
-1
app/models/project.rb
app/models/project.rb
+2
-2
lib/backup/repository.rb
lib/backup/repository.rb
+1
-1
spec/migrations/cleanup_namespaceless_pending_delete_projects_spec.rb
...ons/cleanup_namespaceless_pending_delete_projects_spec.rb
+1
-1
spec/workers/namespaceless_project_destroy_worker_spec.rb
spec/workers/namespaceless_project_destroy_worker_spec.rb
+1
-1
No files found.
app/models/concerns/storage/legacy_project.rb
View file @
597e6190
...
...
@@ -6,7 +6,7 @@ module Storage
full_path
end
def
ensure_
dir
_exist
def
ensure_
storage_path
_exist
gitlab_shell
.
add_namespace
(
repository_storage_path
,
namespace
.
full_path
)
end
...
...
app/models/project.rb
View file @
597e6190
...
...
@@ -44,7 +44,7 @@ class Project < ActiveRecord::Base
default_value_for
:snippets_enabled
,
gitlab_config_features
.
snippets
default_value_for
:only_allow_merge_if_all_discussions_are_resolved
,
false
after_create
:ensure_
dir
_exist
after_create
:ensure_
storage_path
_exist
after_create
:create_project_feature
,
unless: :project_feature
after_save
:update_project_statistics
,
if: :namespace_id_changed?
...
...
@@ -69,7 +69,7 @@ class Project < ActiveRecord::Base
# Legacy Storage specific hooks
after_save
:ensure_
dir
_exist
,
if: :namespace_id_changed?
after_save
:ensure_
storage_path
_exist
,
if: :namespace_id_changed?
acts_as_taggable
...
...
lib/backup/repository.rb
View file @
597e6190
...
...
@@ -75,7 +75,7 @@ module Backup
path_to_project_repo
=
path_to_repo
(
project
)
path_to_project_bundle
=
path_to_bundle
(
project
)
project
.
ensure_
dir
_exist
project
.
ensure_
storage_path
_exist
cmd
=
if
File
.
exist?
(
path_to_project_bundle
)
%W(
#{
Gitlab
.
config
.
git
.
bin_path
}
clone --bare
#{
path_to_project_bundle
}
#{
path_to_project_repo
}
)
...
...
spec/migrations/cleanup_namespaceless_pending_delete_projects_spec.rb
View file @
597e6190
...
...
@@ -4,7 +4,7 @@ require Rails.root.join('db', 'post_migrate', '20170502101023_cleanup_namespacel
describe
CleanupNamespacelessPendingDeleteProjects
do
before
do
# Stub after_save callbacks that will fail when Project has no namespace
allow_any_instance_of
(
Project
).
to
receive
(
:ensure_
dir
_exist
).
and_return
(
nil
)
allow_any_instance_of
(
Project
).
to
receive
(
:ensure_
storage_path
_exist
).
and_return
(
nil
)
allow_any_instance_of
(
Project
).
to
receive
(
:update_project_statistics
).
and_return
(
nil
)
end
...
...
spec/workers/namespaceless_project_destroy_worker_spec.rb
View file @
597e6190
...
...
@@ -5,7 +5,7 @@ describe NamespacelessProjectDestroyWorker do
before
do
# Stub after_save callbacks that will fail when Project has no namespace
allow_any_instance_of
(
Project
).
to
receive
(
:ensure_
dir
_exist
).
and_return
(
nil
)
allow_any_instance_of
(
Project
).
to
receive
(
:ensure_
storage_path
_exist
).
and_return
(
nil
)
allow_any_instance_of
(
Project
).
to
receive
(
:update_project_statistics
).
and_return
(
nil
)
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