diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-08-30 00:10:11 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-08-30 00:10:11 +0000 |
commit | 92b51160289691b859f12139778b1513d46bbd93 (patch) | |
tree | 11924d086a857e96e10e197fa218cfdcdf6c4270 /app/services | |
parent | 477883c59521f65f0ab5d511ab02935d1f3dce60 (diff) | |
download | gitlab-ce-92b51160289691b859f12139778b1513d46bbd93.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/ci/archive_trace_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/ci/archive_trace_service.rb b/app/services/ci/archive_trace_service.rb index 9705a236d98..566346a4b09 100644 --- a/app/services/ci/archive_trace_service.rb +++ b/app/services/ci/archive_trace_service.rb @@ -27,7 +27,7 @@ module Ci job.trace.archive! job.remove_pending_state! - if Feature.enabled?(:datadog_integration_logs_collection, job.project) && job.job_artifacts_trace.present? + if job.job_artifacts_trace.present? job.project.execute_integrations(Gitlab::DataBuilder::ArchiveTrace.build(job), :archive_trace_hooks) end |