Merge pull request #5029 from influxdb/dont_quit_udp_on_bad_parse

Drop UDP point on bad parse and keep going
pull/5052/head
Philip O'Toole 2015-12-07 19:48:11 -08:00
commit ff4c30bc8c
2 changed files with 2 additions and 1 deletions

View File

@ -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]

View File

@ -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 {