2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
# This is a compatibility class to avoid calling a non-existent
|
|
|
|
# class from sidekiq during deployment.
|
2016-01-14 18:37:52 +05:30
|
|
|
#
|
2021-03-08 18:12:59 +05:30
|
|
|
# We're deploying the rename of this class in 13.9. Nevertheless,
|
|
|
|
# we cannot remove this class entirely because there can be jobs
|
|
|
|
# referencing it.
|
2016-01-14 18:37:52 +05:30
|
|
|
#
|
2021-03-08 18:12:59 +05:30
|
|
|
# We can get rid of this class in 13.10
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/issues/297580
|
2016-01-14 18:37:52 +05:30
|
|
|
#
|
|
|
|
module Projects
|
2021-03-08 18:12:59 +05:30
|
|
|
class HousekeepingService < ::Repositories::HousekeepingService
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
end
|