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
4e6e79ec
Commit
4e6e79ec
authored
Oct 23, 2020
by
Arturo Herrero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use each_batch instead of in_batches
parent
96b2ed05
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
app/services/admin/propagate_integration_service.rb
app/services/admin/propagate_integration_service.rb
+1
-3
No files found.
app/services/admin/propagate_integration_service.rb
View file @
4e6e79ec
...
...
@@ -18,7 +18,6 @@ module Admin
private
# rubocop: disable Cop/InBatches
def
update_inherited_integrations
Service
.
by_type
(
integration
.
type
).
inherit_from_id
(
integration
.
id
).
each_batch
(
of:
BATCH_SIZE
)
do
|
services
|
min_id
,
max_id
=
services
.
pick
(
"MIN(services.id), MAX(services.id)"
)
...
...
@@ -27,12 +26,11 @@ module Admin
end
def
update_inherited_descendant_integrations
Service
.
inherited_descendants_from_self_or_ancestors_from
(
integration
).
in_batches
(
of:
BATCH_SIZE
)
do
|
services
|
Service
.
inherited_descendants_from_self_or_ancestors_from
(
integration
).
each_batch
(
of:
BATCH_SIZE
)
do
|
services
|
min_id
,
max_id
=
services
.
pick
(
"MIN(services.id), MAX(services.id)"
)
PropagateIntegrationInheritDescendantWorker
.
perform_async
(
integration
.
id
,
min_id
,
max_id
)
end
end
# rubocop: enable Cop/InBatches
def
create_integration_for_groups_without_integration
Group
.
without_integration
(
integration
).
each_batch
(
of:
BATCH_SIZE
)
do
|
groups
|
...
...
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