Commit 3129cbd5 authored by Thong Kuah's avatar Thong Kuah

Run least expensive method first - has_metrics?

Success is relatively cheap compared to prometheus_adapter which can
invoke deployment_platform which does a lot of work
parent 65b6a37f
...@@ -179,7 +179,7 @@ class Deployment < ApplicationRecord ...@@ -179,7 +179,7 @@ class Deployment < ApplicationRecord
end end
def has_metrics? def has_metrics?
prometheus_adapter&.can_query? && success? success? && prometheus_adapter&.can_query?
end end
def metrics def metrics
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment