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
end
def has_metrics?
prometheus_adapter&.can_query? && success?
success? && prometheus_adapter&.can_query?
end
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