Change aerospike default config to localhost
The default config was in a non-runnable state if one were to attempt to use it with the docker-machine setup. Changed to localhost. closes #321
This commit is contained in:
parent
cb951ebd28
commit
ccbfb038ee
|
@ -104,11 +104,11 @@ type Aerospike struct {
|
|||
|
||||
var sampleConfig = `
|
||||
# Aerospike servers to connect to (with port)
|
||||
# Default: servers = ["127.0.0.1:3000"]
|
||||
# Default: servers = ["localhost:3000"]
|
||||
#
|
||||
# This plugin will query all namespaces the aerospike
|
||||
# server has configured and get stats for them.
|
||||
servers = ["aerospike01:3000"]
|
||||
servers = ["localhost:3000"]
|
||||
`
|
||||
|
||||
func (a *Aerospike) SampleConfig() string {
|
||||
|
|
Loading…
Reference in New Issue