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:
Tait Clarridge 2015-10-26 08:54:31 -04:00 committed by Cameron Sparr
parent cb951ebd28
commit ccbfb038ee
1 changed files with 2 additions and 2 deletions

View File

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