Fix panic in mongo input (#2848)

This commit is contained in:
Steve Nardone 2017-05-30 14:02:26 -04:00 committed by Daniel Nelson
parent 24ea9fdc4d
commit e7f9db297e
1 changed files with 1 additions and 1 deletions

View File

@ -564,7 +564,7 @@ func NewStatLine(oldMongo, newMongo MongoStatus, key string, all bool, sampleSec
// BEGIN code modification
if newStat.Repl.IsMaster.(bool) {
returnVal.NodeType = "PRI"
} else if newStat.Repl.Secondary.(bool) {
} else if newStat.Repl.Secondary != nil && newStat.Repl.Secondary.(bool) {
returnVal.NodeType = "SEC"
} else if newStat.Repl.ArbiterOnly != nil && newStat.Repl.ArbiterOnly.(bool) {
returnVal.NodeType = "ARB"