commit
569d23c269
|
@ -56,6 +56,7 @@
|
||||||
- [#3183](https://github.com/influxdb/influxdb/issues/3183): using line protocol measurement names cannot contain commas
|
- [#3183](https://github.com/influxdb/influxdb/issues/3183): using line protocol measurement names cannot contain commas
|
||||||
- [#3193](https://github.com/influxdb/influxdb/pull/3193): Fix panic for SHOW STATS and in collectd
|
- [#3193](https://github.com/influxdb/influxdb/pull/3193): Fix panic for SHOW STATS and in collectd
|
||||||
- [#3102](https://github.com/influxdb/influxdb/issues/3102): Add authentication cache
|
- [#3102](https://github.com/influxdb/influxdb/issues/3102): Add authentication cache
|
||||||
|
- [#3209](https://github.com/influxdb/influxdb/pull/3209): Dump Run() errors to stderr
|
||||||
|
|
||||||
## v0.9.0 [2015-06-11]
|
## v0.9.0 [2015-06-11]
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ func main() {
|
||||||
|
|
||||||
m := NewMain()
|
m := NewMain()
|
||||||
if err := m.Run(os.Args[1:]...); err != nil {
|
if err := m.Run(os.Args[1:]...); err != nil {
|
||||||
fmt.Println(err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue