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
965b4176
Commit
965b4176
authored
May 10, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix MySQL build failure
parent
62c93ab9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
db/post_migrate/20170502101023_cleanup_namespaceless_pending_delete_projects.rb
...02101023_cleanup_namespaceless_pending_delete_projects.rb
+1
-1
spec/migrations/cleanup_namespaceless_pending_delete_projects_spec.rb
...ons/cleanup_namespaceless_pending_delete_projects_spec.rb
+1
-1
No files found.
db/post_migrate/20170502101023_cleanup_namespaceless_pending_delete_projects.rb
View file @
965b4176
...
...
@@ -30,7 +30,7 @@ class CleanupNamespacelessPendingDeleteProjects < ActiveRecord::Migration
private
def
pending_delete_batch
connection
.
exec_query
(
find_batch
).
map
{
|
row
|
row
[
'id'
]
}
connection
.
exec_query
(
find_batch
).
map
{
|
row
|
row
[
'id'
]
.
to_i
}
end
BATCH_SIZE
=
5000
...
...
spec/migrations/cleanup_namespaceless_pending_delete_projects_spec.rb
View file @
965b4176
...
...
@@ -15,7 +15,7 @@ describe CleanupNamespacelessPendingDeleteProjects do
project
=
build
(
:empty_project
,
pending_delete:
true
,
namespace_id:
nil
)
project
.
save
(
validate:
false
)
expect
(
NamespacelessProjectDestroyWorker
).
to
receive
(
:bulk_perform_async
).
with
([[
project
.
id
.
to_s
]])
expect
(
NamespacelessProjectDestroyWorker
).
to
receive
(
:bulk_perform_async
).
with
([[
project
.
id
]])
described_class
.
new
.
up
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