Fix #146: Alerting causes panic with some providers

This commit is contained in:
TwinProduction
2021-07-29 18:13:37 -04:00
parent 07b1a2eafb
commit cdbc075439
5 changed files with 22 additions and 9 deletions

View File

@ -16,7 +16,10 @@ import (
// GetHTTPClient returns the shared HTTP client
func GetHTTPClient(config *Config) *http.Client {
return config.GetHTTPClient()
if config == nil {
return defaultConfig.getHTTPClient()
}
return config.getHTTPClient()
}
// CanCreateTCPConnection checks whether a connection can be established with a TCP service