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:
authorShinya Maeda <shinya@gitlab.com>2018-11-07 08:29:16 +0300
committerShinya Maeda <shinya@gitlab.com>2018-11-07 08:29:16 +0300
commit9c811566f85d18bc9eb4a85c6a343cf1bfa4fbd2 (patch)
tree0d5de6f22917fa5def4e8a9a918bf0bcd5f1d3e4 /lib/gitlab/cycle_analytics/summary/deploy.rb
parent4eeb51dc71062fa2eac828c6030388d354179efc (diff)
Revert add action column changes
Diffstat (limited to 'lib/gitlab/cycle_analytics/summary/deploy.rb')
-rw-r--r--lib/gitlab/cycle_analytics/summary/deploy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/cycle_analytics/summary/deploy.rb b/lib/gitlab/cycle_analytics/summary/deploy.rb
index b1c644f77f3..39fdf5074da 100644
--- a/lib/gitlab/cycle_analytics/summary/deploy.rb
+++ b/lib/gitlab/cycle_analytics/summary/deploy.rb
@@ -7,7 +7,7 @@ module Gitlab
end
def value
- @value ||= @project.deployments.deployed.where("finished_at > ?", @from).count
+ @value ||= @project.deployments.success.where("created_at > ?", @from).count
end
end
end