Skip to content

Commit

Permalink
Fix runtime: goroutine stack exceeds 1000000000-byte limit
Browse files Browse the repository at this point in the history
Fixes #7225
  • Loading branch information
jwilder committed Aug 29, 2016
1 parent 05d1a94 commit b31bf79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ With this release the systemd configuration files for InfluxDB will use the syst
- [#7125](https://github.com/influxdata/influxdb/pull/7125): Ensure gzip writer is closed in influx_inspect export
- [#7127](https://github.com/influxdata/influxdb/pull/7127): Concurrent series limit
- [#7218](https://github.com/influxdata/influxdb/issues/7218): Fix alter retention policy when all options are used.
- [#7225](https://github.com/influxdata/influxdb/issues/7225): runtime: goroutine stack exceeds 1000000000-byte limit

## v0.13.0 [2016-05-12]

Expand Down
4 changes: 2 additions & 2 deletions tsdb/engine/tsm1/iterator.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type floatCastIntegerCursor struct {
cursor integerCursor
}

func (c *floatCastIntegerCursor) close() error { return c.close() }
func (c *floatCastIntegerCursor) close() error { return c.cursor.close() }

func (c *floatCastIntegerCursor) next() (t int64, v interface{}) { return c.nextFloat() }

Expand All @@ -38,7 +38,7 @@ type integerCastFloatCursor struct {
cursor floatCursor
}

func (c *integerCastFloatCursor) close() error { return c.close() }
func (c *integerCastFloatCursor) close() error { return c.cursor.close() }

func (c *integerCastFloatCursor) next() (t int64, v interface{}) { return c.nextInteger() }

Expand Down

0 comments on commit b31bf79

Please sign in to comment.