2017-06-02 11:12:36 -04:00
|
|
|
class BackgroundMigrationWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2017-06-02 11:12:36 -04:00
|
|
|
|
|
|
|
# Performs the background migration.
|
|
|
|
#
|
|
|
|
# See Gitlab::BackgroundMigration.perform for more information.
|
|
|
|
def perform(class_name, arguments = [])
|
|
|
|
Gitlab::BackgroundMigration.perform(class_name, arguments)
|
|
|
|
end
|
|
|
|
end
|