Merge pull request #5029 from influxdb/dont_quit_udp_on_bad_parse
Drop UDP point on bad parse and keep goingpull/5052/head
commit
ff4c30bc8c
|
@ -38,6 +38,7 @@
|
|||
- [#4878](https://github.com/influxdb/influxdb/pull/4878): Fix String() function for several InfluxQL statement types
|
||||
- [#4913](https://github.com/influxdb/influxdb/pull/4913): Fix b1 flush deadlock
|
||||
- [#3170](https://github.com/influxdb/influxdb/issues/3170), [#4921](https://github.com/influxdb/influxdb/pull/4921): Database does not exist error is now JSON. Thanks @pires!
|
||||
- [#5029](https://github.com/influxdb/influxdb/pull/5029): Drop UDP point on bad parse.
|
||||
|
||||
## v0.9.5 [2015-11-20]
|
||||
|
||||
|
|
|
@ -188,7 +188,7 @@ func (s *Service) parser() {
|
|||
if err != nil {
|
||||
s.statMap.Add(statPointsParseFail, 1)
|
||||
s.Logger.Printf("Failed to parse points: %s", err)
|
||||
return
|
||||
continue
|
||||
}
|
||||
|
||||
for _, point := range points {
|
||||
|
|
Loading…
Reference in New Issue