Skip to content

Commit 16e6bf3

Browse files
committed
Merge pull request #489 from agrare/fix_prometheus_proxy_host
Fix prometheus http_proxy_uri host (cherry picked from commit 769fc9b)
1 parent 37c5bb8 commit 16e6bf3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/models/manageiq/providers/ibm_cloud/container_manager.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,9 @@ def self.prometheus_connect(hostname, port, options)
101101
}
102102
ssl_options = options[:ssl_options] || {:verify_ssl => OpenSSL::SSL::VERIFY_NONE}
103103

104+
http_proxy_uri = options[:http_proxy] || VMDB::Util.http_proxy_uri.to_s
104105
prometheus_options = {
105-
:http_proxy_uri => options[:http_proxy] || VMDB::Util.http_proxy_uri.to_s,
106+
:http_proxy_uri => http_proxy_uri.presence,
106107
:verify_ssl => ssl_options[:verify_ssl],
107108
:ssl_cert_store => ssl_options[:ca_file],
108109
}

0 commit comments

Comments
 (0)