Skip to content

Commit

Permalink
Merge pull request #5029 from influxdb/dont_quit_udp_on_bad_parse
Browse files Browse the repository at this point in the history
Drop UDP point on bad parse and keep going
  • Loading branch information
otoolep committed Dec 8, 2015
2 parents 70225ec + a5cb913 commit ff4c30b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
2 changes: 1 addition & 1 deletion services/udp/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit ff4c30b

Please sign in to comment.