2020-05-06 02:09:36 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-02-22 13:10:55 -05:00
|
|
|
# This is a compatibility class to avoid calling a non-existent
|
|
|
|
# class from sidekiq during deployment.
|
|
|
|
#
|
|
|
|
# This class was moved to a namespace in https://gitlab.com/gitlab-org/gitlab/-/issues/299853.
|
|
|
|
# we cannot remove this class entirely because there can be jobs
|
|
|
|
# referencing it.
|
|
|
|
#
|
|
|
|
# We can get rid of this class in 14.0
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/issues/322393
|
|
|
|
class ProjectRepositoryStorageMove < Projects::RepositoryStorageMove
|
2020-05-06 02:09:36 -04:00
|
|
|
end
|