You've already forked postgres_exporter
mirror of
https://github.com/prometheus-community/postgres_exporter.git
synced 2025-08-09 15:42:47 +03:00
* Switch to using kingpin for CLI interface as upstream Prometheus has moved that way too.
9 lines
151 B
Go
9 lines
151 B
Go
// +build !go1.7
|
|
|
|
package pq
|
|
|
|
import "crypto/tls"
|
|
|
|
// Renegotiation is not supported by crypto/tls until Go 1.7.
|
|
func sslRenegotiation(*tls.Config) {}
|