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
ff2119a4
Commit
ff2119a4
authored
Sep 29, 2020
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Ruby 2.7 keyword parameter deprecations
Part of
https://gitlab.com/gitlab-org/gitlab/-/issues/257438
parent
60579a82
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ee/app/workers/geo/file_download_dispatch_worker/job_finder.rb
...p/workers/geo/file_download_dispatch_worker/job_finder.rb
+3
-3
No files found.
ee/app/workers/geo/file_download_dispatch_worker/job_finder.rb
View file @
ff2119a4
...
...
@@ -23,19 +23,19 @@ module Geo
def
find_jobs_never_attempted_sync
(
batch_size
:)
convert_registry_relation_to_job_args
(
registry_finder
.
find_registries_never_attempted_sync
(
find_batch_params
(
batch_size
))
registry_finder
.
find_registries_never_attempted_sync
(
**
find_batch_params
(
batch_size
))
)
end
def
find_jobs_needs_sync_again
(
batch_size
:)
convert_registry_relation_to_job_args
(
registry_finder
.
find_registries_needs_sync_again
(
find_batch_params
(
batch_size
))
registry_finder
.
find_registries_needs_sync_again
(
**
find_batch_params
(
batch_size
))
)
end
def
find_jobs_synced_missing_on_primary
(
batch_size
:)
convert_registry_relation_to_job_args
(
registry_finder
.
find_retryable_synced_missing_on_primary_registries
(
find_batch_params
(
batch_size
))
registry_finder
.
find_retryable_synced_missing_on_primary_registries
(
**
find_batch_params
(
batch_size
))
)
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