Continue probing even if pushing a tag failes

This commit is contained in:
Ingo Oppermann 2020-04-09 18:06:04 +02:00
parent f2718847ae
commit caa009df9c

View File

@ -584,7 +584,9 @@ func (self *Conn) probe() (err error) {
return return
} }
if err = self.prober.PushTag(tag, int32(self.timestamp)); err != nil { if err = self.prober.PushTag(tag, int32(self.timestamp)); err != nil {
return if Debug {
fmt.Printf("error probing tag: %s\n", err.Error())
}
} }
} }