Fix failing test, when deployment platform is not bound to a cluster.
This commit is contained in:
parent
0feeddaa0f
commit
637c955862
1 changed files with 4 additions and 2 deletions
|
@ -233,8 +233,10 @@ class Environment < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def cluster_prometheus_adapter
|
def cluster_prometheus_adapter
|
||||||
cluster = project.deployment_platform&.cluster
|
return unless project.deployment_platform.respond_to?(:cluster)
|
||||||
return unless cluster&.application_prometheus&.installed?
|
|
||||||
|
cluster = project.deployment_platform.cluster
|
||||||
|
return unless cluster.application_prometheus&.installed?
|
||||||
|
|
||||||
cluster.application_prometheus
|
cluster.application_prometheus
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue