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
path: root/app
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-08-08 03:08:57 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-08-08 03:08:57 +0300
commit53e998950e2dfeed22bec2eff74c5c996fe76856 (patch)
tree4ac40f1b0fc5478267e3ddb1e62056f04f4bd1b9 /app
parent212d5da20b1aedfe9369f187c8608abde5d70818 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app')
-rw-r--r--app/models/deployment.rb10
1 files changed, 1 insertions, 9 deletions
diff --git a/app/models/deployment.rb b/app/models/deployment.rb
index 38bf84da073..0bdce18bab5 100644
--- a/app/models/deployment.rb
+++ b/app/models/deployment.rb
@@ -79,11 +79,6 @@ class Deployment < ApplicationRecord
transition skipped: :created
end
- # Deprecated. To be removed when we remove `track_manual_deployments` feature flag.
- event :unblock do
- transition blocked: :created
- end
-
event :succeed do
transition any - [:success] => :success
end
@@ -405,10 +400,7 @@ class Deployment < ApplicationRecord
def sync_status_with(job)
job_status = job.status
-
- if ::Feature.enabled?(:track_manual_deployments, job.project)
- job_status = 'blocked' if job_status == 'manual' # rubocop:disable Style/SoleNestedConditional
- end
+ job_status = 'blocked' if job_status == 'manual'
return false unless ::Deployment.statuses.include?(job_status)
return false if job_status == self.status