From ccbfb038ee16758047a0d4eb1543f61219e92c8c Mon Sep 17 00:00:00 2001 From: Tait Clarridge Date: Mon, 26 Oct 2015 08:54:31 -0400 Subject: [PATCH] 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 --- plugins/aerospike/aerospike.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/aerospike/aerospike.go b/plugins/aerospike/aerospike.go index 128c583bb..cf3c1492e 100644 --- a/plugins/aerospike/aerospike.go +++ b/plugins/aerospike/aerospike.go @@ -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 {