Fix panic in mongo input (#2848)
(cherry picked from commit e7f9db297e
)
This commit is contained in:
parent
7ca902f987
commit
7f67bf593f
|
@ -564,7 +564,7 @@ func NewStatLine(oldMongo, newMongo MongoStatus, key string, all bool, sampleSec
|
||||||
// BEGIN code modification
|
// BEGIN code modification
|
||||||
if newStat.Repl.IsMaster.(bool) {
|
if newStat.Repl.IsMaster.(bool) {
|
||||||
returnVal.NodeType = "PRI"
|
returnVal.NodeType = "PRI"
|
||||||
} else if newStat.Repl.Secondary.(bool) {
|
} else if newStat.Repl.Secondary != nil && newStat.Repl.Secondary.(bool) {
|
||||||
returnVal.NodeType = "SEC"
|
returnVal.NodeType = "SEC"
|
||||||
} else if newStat.Repl.ArbiterOnly != nil && newStat.Repl.ArbiterOnly.(bool) {
|
} else if newStat.Repl.ArbiterOnly != nil && newStat.Repl.ArbiterOnly.(bool) {
|
||||||
returnVal.NodeType = "ARB"
|
returnVal.NodeType = "ARB"
|
||||||
|
|
Loading…
Reference in New Issue