debian-mirror-gitlab/app/services/projects/housekeeping_service.rb

17 lines
477 B
Ruby
Raw Normal View History

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.
#
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.
#
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
#
module Projects
2021-03-08 18:12:59 +05:30
class HousekeepingService < ::Repositories::HousekeepingService
end
end