Skip to content

Commit

Permalink
Merge pull request #9964 from influxdata/js-enable-storage-service
Browse files Browse the repository at this point in the history
Enable the storage service by default
  • Loading branch information
jsternberg committed Jun 13, 2018
2 parents 2be1620 + 17ca220 commit 87d2469
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
v1.7.0 [unreleased]
-------------------

### Features

- [#9964](https://github.com/influxdata/influxdb/pull/9964): Enable the storage service by default.

v1.6.0 [unreleased]
-------------------

Expand Down
2 changes: 1 addition & 1 deletion Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/storage/config.go
Expand Up @@ -19,7 +19,7 @@ type Config struct {
// NewConfig returns a new Config with default settings.
func NewConfig() Config {
return Config{
Enabled: false,
Enabled: true,
LogEnabled: true,
BindAddress: DefaultBindAddress,
}
Expand Down

0 comments on commit 87d2469

Please sign in to comment.