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:
authorGrzegorz Bizon <grzegorz@gitlab.com>2019-08-14 16:33:28 +0300
committerGrzegorz Bizon <grzegorz@gitlab.com>2019-08-14 16:33:28 +0300
commit13581fe06c1fb34351010f5f883d6263528438bd (patch)
tree7896a7d43abb81f9abd9817d4973eb6ac459a144 /app/models/concerns/has_status.rb
parente57cec33b55e3b886e45e7b2ddd98cd068ee879c (diff)
parentcee2f86d5724fcb073a8abdfbaf83869a8de85f1 (diff)
Merge branch 'optimise-dag-processing' into 'master'
Optimise dag processing See merge request gitlab-org/gitlab-ce!31768
Diffstat (limited to 'app/models/concerns/has_status.rb')
-rw-r--r--app/models/concerns/has_status.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/concerns/has_status.rb b/app/models/concerns/has_status.rb
index 27a5c3d5286..71ebb586c13 100644
--- a/app/models/concerns/has_status.rb
+++ b/app/models/concerns/has_status.rb
@@ -106,10 +106,15 @@ module HasStatus
scope :running_or_pending, -> { with_status(:running, :pending) }
scope :finished, -> { with_status(:success, :failed, :canceled) }
scope :failed_or_canceled, -> { with_status(:failed, :canceled) }
+ scope :incomplete, -> { without_statuses(completed_statuses) }
scope :cancelable, -> do
where(status: [:running, :preparing, :pending, :created, :scheduled])
end
+
+ scope :without_statuses, -> (names) do
+ with_status(all_state_names - names.to_a)
+ end
end
def started?