Skip to content

Commit

Permalink
Run CQ passed into goroutine, not from outer loop
Browse files Browse the repository at this point in the history
  • Loading branch information
otoolep committed May 12, 2015
1 parent 557b311 commit aefa9d4
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 @@ -23,6 +23,7 @@ This release has a breaking API change for writes -- the field previously called
- [#2542](https://github.com/influxdb/influxdb/issues/2542): Throw parser error for invalid aggregate without where time.
- [#2548](https://github.com/influxdb/influxdb/issues/2548): Return an error when numeric aggregate applied to non-numeric data.
- [#2487](https://github.com/influxdb/influxdb/issues/2487): Aggregate query with exact timestamp causes panic. Thanks @neonstalwart!
- [#2487](https://github.com/influxdb/influxdb/issues/2487): Run CQ that is actually passed into go-routine.

## v0.9.0-rc29 [2015-05-05]

Expand Down
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -3908,7 +3908,7 @@ func (s *Server) RunContinuousQueries() error {
c.setIntoRP(d.defaultRetentionPolicy)
}
go func(cq *ContinuousQuery) {
s.runContinuousQuery(c)
s.runContinuousQuery(cq)
}(c)
}
}
Expand Down

0 comments on commit aefa9d4

Please sign in to comment.