mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
Check length of receiver type configuration
This commit is contained in:
parent
ac41f02dfc
commit
7106e465ad
@ -170,7 +170,7 @@ func main() {
|
||||
return
|
||||
}
|
||||
// Setup receiver
|
||||
if config.Receiver.Type != "none" {
|
||||
if len(config.Receiver.Type) > 0 && config.Receiver.Type != "none" {
|
||||
if _, found := Receivers[config.Receiver.Type]; !found {
|
||||
log.Print("Invalid receiver type '", config.Receiver.Type, "' in configuration")
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user