Skip to content

Commit

Permalink
Merge pull request #2156 from influxdb/fix-graphite-swallowed-error
Browse files Browse the repository at this point in the history
Fix swallowed error in Graphite UDP server
  • Loading branch information
mark-rushakoff committed Apr 3, 2015
2 parents e0bdff2 + eaf8d06 commit 9bc3920
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 @@ -7,6 +7,7 @@
### Bugfixes
- [#2147](https://github.com/influxdb/influxdb/pull/2147): Set Go Max procs in a better location
- [#2151](https://github.com/influxdb/influxdb/pull/2151): Ignore replay commands on the metastore.
- [#2156](https://github.com/influxdb/influxdb/pull/2156): Propagate error when resolving UDP address in Graphite UDP server.

## v0.9.0-rc19 [2015-04-01]

Expand Down
2 changes: 1 addition & 1 deletion graphite/graphite_udp.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func (u *UDPServer) ListenAndServe(iface string) error {

addr, err := net.ResolveUDPAddr("udp", iface)
if err != nil {
return nil
return err
}

conn, err := net.ListenUDP("udp", addr)
Expand Down

0 comments on commit 9bc3920

Please sign in to comment.