Skip to content

Commit

Permalink
Merge pull request #2114 from influxdb/fix_stderr_stdout
Browse files Browse the repository at this point in the history
Direct STDERR and STDOUR and remove obsolete 'run'
  • Loading branch information
otoolep committed Mar 30, 2015
2 parents 8dfd935 + 8970efe commit 97b385c
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 @@ -14,6 +14,7 @@
- [#2104](https://github.com/influxdb/influxdb/pull/2104): Include NEQ when calculating field filters.
- [#2112](https://github.com/influxdb/influxdb/pull/2112): Set GOMAXPROCS on startup. This may have been causing extra leader elections, which would cause a number of other bugs or instability.
- [#2111](https://github.com/influxdb/influxdb/pull/2111) and [#2025](https://github.com/influxdb/influxdb/issues/2025): Raft stability fixes. Non-contiguous log error and others.
- [#2114](https://github.com/influxdb/influxdb/pull/2114): Correctly start influxd on platforms without start-stop-daemon.

## v0.9.0-rc16 [2015-03-24]

Expand Down
2 changes: 1 addition & 1 deletion scripts/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ case $1 in
if which start-stop-daemon > /dev/null 2>&1; then
start-stop-daemon --chuid influxdb:influxdb --start --quiet --pidfile $pidfile --exec $daemon -- -pidfile $pidfile -config $config >$STDOUT 2>$STDERR &
else
nohup $daemon run -config $config -pidfile $pidfile > $STDOUT 2>&1 &
nohup $daemon -pidfile $pidfile -config $config >$STDOUT 2>$STDERR &
fi
log_success_msg "$name process was started"
;;
Expand Down

0 comments on commit 97b385c

Please sign in to comment.