Commit 637c9558 authored by Pawel Chojnacki's avatar Pawel Chojnacki

Fix failing test, when deployment platform is not bound to a cluster.

parent 0feeddaa
......@@ -233,8 +233,10 @@ class Environment < ActiveRecord::Base
end
def cluster_prometheus_adapter
cluster = project.deployment_platform&.cluster
return unless cluster&.application_prometheus&.installed?
return unless project.deployment_platform.respond_to?(:cluster)
cluster = project.deployment_platform.cluster
return unless cluster.application_prometheus&.installed?
cluster.application_prometheus
end
......
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