Merge pull request #9964 from influxdata/js-enable-storage-service

Enable the storage service by default
pull/9972/head
Jonathan A. Sternberg 2018-06-13 16:28:27 -05:00 committed by GitHub
commit 87d2469877
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View File

@ -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]
-------------------

2
Gopkg.lock generated
View File

@ -136,7 +136,7 @@
"status",
"yarpcproto"
]
revision = "f0da2db138cad2fb425541938fc28dd5a5bc6918"
revision = "3f4e3d295981d5e8fca0a9930a4f92f9f34bc639"
[[projects]]
name = "github.com/jsternberg/zap-logfmt"

View File

@ -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,
}