Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/ci/job_artifact.rb')
-rw-r--r--app/models/ci/job_artifact.rb18
1 files changed, 17 insertions, 1 deletions
diff --git a/app/models/ci/job_artifact.rb b/app/models/ci/job_artifact.rb
index 50e21a1c323..5248a80f710 100644
--- a/app/models/ci/job_artifact.rb
+++ b/app/models/ci/job_artifact.rb
@@ -261,6 +261,22 @@ module Ci
self.where(project: project).sum(:size)
end
+ ##
+ # FastDestroyAll concerns
+ # rubocop: disable CodeReuse/ServiceClass
+ def self.begin_fast_destroy
+ service = ::Ci::JobArtifacts::DestroyAssociationsService.new(self)
+ service.destroy_records
+ service
+ end
+ # rubocop: enable CodeReuse/ServiceClass
+
+ ##
+ # FastDestroyAll concerns
+ def self.finalize_fast_destroy(service)
+ service.update_statistics
+ end
+
def local_store?
[nil, ::JobArtifactUploader::Store::LOCAL].include?(self.file_store)
end
@@ -331,4 +347,4 @@ module Ci
end
end
-Ci::JobArtifact.prepend_if_ee('EE::Ci::JobArtifact')
+Ci::JobArtifact.prepend_mod_with('Ci::JobArtifact')