fix: https healthcheck mint test (#10622)

master
Mark Clarkson 4 years ago committed by GitHub
parent f1418a50f0
commit 9dda9fb903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      mint/run/core/healthcheck/main.go

@ -199,9 +199,10 @@ func testPrometheusEndpoint(endpoint string) {
func main() {
endpoint := os.Getenv("SERVER_ENDPOINT")
secure := os.Getenv("ENABLE_HTTPS")
endpoint = "http://" + endpoint
if secure == "1" {
endpoint = "https://" + endpoint
} else {
endpoint = "http://" + endpoint
}
// Output to stdout instead of the default stderr

Loading…
Cancel
Save