Skip to content

Commit

Permalink
Version 0.7-beta4
Browse files Browse the repository at this point in the history
  • Loading branch information
lomik committed Jan 7, 2016
1 parent 45ba079 commit 56c67fd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ enabled = true
[pickle]
listen = ":2004"
enabled = true
# Limit message size for prevent memory overflow
max-message-size = 67108864
[carbonlink]
listen = "127.0.0.1:7002"
Expand All @@ -123,12 +125,13 @@ enabled = false
## Changelog
##### master

##### 0.7-beta1
##### 0.7-beta4
* Grace stop on `USR2` signal: close all socket listeners, flush cache to disk and stop carbon
* Reload persister config (`whisper` section of main config, `storage-schemas.conf` and `storage-aggregation.conf`) on `HUP` signal
* Fix bug: Cache may start save points only after first checkpoint
* Decimal numbers in log files instead of hexademical #22
* Fix bug: NaN values being saved in Whisper datafiles #17 (thanks [Andrew Hayworth](https://github.com/ahayworth))
* Fix bug: may crash on bad pickle message with big message size in header #30. Added option `pickle.max-message-size` with 64 MB default value

##### version 0.6
* `metric-interval` option
Expand Down
2 changes: 1 addition & 1 deletion carbon-agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
import _ "net/http/pprof"

// Version of go-carbon
const Version = "0.7-beta3"
const Version = "0.7-beta4"

func httpServe(addr string) (func(), error) {
tcpAddr, err := net.ResolveTCPAddr("tcp", addr)
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
go-carbon (0.7-beta4) unstable; urgency=low
* Fix bug: may crash on bad pickle message with big message size in header
#30. Added option `pickle.max-message-size` with 64 MB default value

-- Roman Lomonosov <[email protected]> Fri, 8 Jan 2016 00:50:00 +0300

go-carbon (0.7-beta3) unstable; urgency=low
* Missing error handling

Expand Down

0 comments on commit 56c67fd

Please sign in to comment.