2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-02-19 13:09:10 -05:00
|
|
|
class BackgroundMigrationWorker # rubocop:disable Scalability/IdempotentWorker
|
2021-12-01 13:15:19 -05:00
|
|
|
include BackgroundMigration::SingleDatabaseWorker
|
2017-06-02 11:12:36 -04:00
|
|
|
|
2021-12-01 13:15:19 -05:00
|
|
|
def self.tracking_database
|
2021-12-16 22:12:52 -05:00
|
|
|
@tracking_database ||= Gitlab::BackgroundMigration::DEFAULT_TRACKING_DATABASE
|
2018-07-19 11:16:47 -04:00
|
|
|
end
|
2017-06-02 11:12:36 -04:00
|
|
|
end
|