BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
1229ce06
Commit
1229ce06
authored
Feb 27, 2017
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'sh-async-delete-children' into 'master'
Make nested groups deletion synchronous to avoid potential race See merge request !9288
parents
dfd15596
334591dd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
destroy_service.rb
app/services/groups/destroy_service.rb
+2
-1
destroy_service_spec.rb
spec/services/groups/destroy_service_spec.rb
+2
-0
No files found.
app/services/groups/destroy_service.rb
View file @
1229ce06
...
...
@@ -18,7 +18,8 @@ module Groups
end
group
.
children
.
each
do
|
group
|
DestroyService
.
new
(
group
,
current_user
).
async_execute
# This needs to be synchronous since the namespace gets destroyed below
DestroyService
.
new
(
group
,
current_user
).
execute
end
group
.
really_destroy!
...
...
spec/services/groups/destroy_service_spec.rb
View file @
1229ce06
...
...
@@ -5,6 +5,7 @@ describe Groups::DestroyService, services: true do
let!
(
:user
)
{
create
(
:user
)
}
let!
(
:group
)
{
create
(
:group
)
}
let!
(
:nested_group
)
{
create
(
:group
,
parent:
group
)
}
let!
(
:project
)
{
create
(
:project
,
namespace:
group
)
}
let!
(
:gitlab_shell
)
{
Gitlab
::
Shell
.
new
}
let!
(
:remove_path
)
{
group
.
path
+
"+
#{
group
.
id
}
+deleted"
}
...
...
@@ -20,6 +21,7 @@ describe Groups::DestroyService, services: true do
end
it
{
expect
(
Group
.
unscoped
.
all
).
not_to
include
(
group
)
}
it
{
expect
(
Group
.
unscoped
.
all
).
not_to
include
(
nested_group
)
}
it
{
expect
(
Project
.
unscoped
.
all
).
not_to
include
(
project
)
}
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