diff options
author | Shinya Maeda <shinya@gitlab.com> | 2019-01-10 18:32:12 +0900 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2019-04-04 16:19:43 +0700 |
commit | 8e51439e809db6ff5ff86bd79cdf95af62821a1d (patch) | |
tree | 103c4a6602397f03c7d548eb298e02775c21db4b /app/uploaders | |
parent | 74ace2a445a44a13bd22c1907b8ec55b1772d403 (diff) | |
download | gitlab-ce-8e51439e809db6ff5ff86bd79cdf95af62821a1d.tar.gz |
Drop legacy artifacts usagedrop-usage-of-leagcy-artifacts
Legacy artifacts have been correctly migrated to new place -
ci_job_artifacts. Now it's time to remove the related code, but before
that we should ensure it doesn't break anything by using feature flag.
Diffstat (limited to 'app/uploaders')
-rw-r--r-- | app/uploaders/legacy_artifact_uploader.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/uploaders/legacy_artifact_uploader.rb b/app/uploaders/legacy_artifact_uploader.rb index a9afc104ed1..fac3c3dcb8f 100644 --- a/app/uploaders/legacy_artifact_uploader.rb +++ b/app/uploaders/legacy_artifact_uploader.rb @@ -1,5 +1,8 @@ # frozen_string_literal: true +## +# TODO: Remove this uploader when we remove :ci_enable_legacy_artifacts feature flag +# See https://gitlab.com/gitlab-org/gitlab-ce/issues/58595 class LegacyArtifactUploader < GitlabUploader extend Workhorse::UploadPath include ObjectStorage::Concern |