Commit 5f6d1b6f authored by Nick Thomas's avatar Nick Thomas

Merge branch 'bvl-comment-202100' into 'master'

Link issue when disabling context cop

See merge request gitlab-org/gitlab!24478
parents 35ab2384 0a0173a7
...@@ -9,7 +9,10 @@ module MergeRequests ...@@ -9,7 +9,10 @@ module MergeRequests
def self.enqueue! def self.enqueue!
ids = MergeRequestDiff.ids_for_external_storage_migration(limit: MAX_JOBS) ids = MergeRequestDiff.ids_for_external_storage_migration(limit: MAX_JOBS)
MigrateExternalDiffsWorker.bulk_perform_async(ids.map { |id| [id] }) # rubocop:disable Scalability/BulkPerformWithContext # rubocop:disable Scalability/BulkPerformWithContext
# https://gitlab.com/gitlab-org/gitlab/issues/202100
MigrateExternalDiffsWorker.bulk_perform_async(ids.map { |id| [id] })
# rubocop:enable Scalability/BulkPerformWithContext
end end
def initialize(merge_request_diff) def initialize(merge_request_diff)
......
...@@ -2,7 +2,12 @@ ...@@ -2,7 +2,12 @@
class ScheduleMigrateExternalDiffsWorker class ScheduleMigrateExternalDiffsWorker
include ApplicationWorker include ApplicationWorker
include CronjobQueue # rubocop:disable Scalability/CronWorkerContext # rubocop:disable Scalability/CronWorkerContext:
# This schedules the `MigrateExternalDiffsWorker`
# issue for adding context: https://gitlab.com/gitlab-org/gitlab/issues/202100
include CronjobQueue
# rubocop:enable Scalability/CronWorkerContext:
include Gitlab::ExclusiveLeaseHelpers include Gitlab::ExclusiveLeaseHelpers
feature_category :source_code_management feature_category :source_code_management
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment