From d1ca49f70564d8cf0eed8d1b756dd02d12f1e0fe Mon Sep 17 00:00:00 2001 From: tnextday Date: Wed, 30 Mar 2016 16:44:03 +0800 Subject: [PATCH] update --- weed/storage/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/storage/store.go b/weed/storage/store.go index aa6b7e564..bc4e6e8f5 100644 --- a/weed/storage/store.go +++ b/weed/storage/store.go @@ -27,7 +27,7 @@ type MasterNodes struct { } func (mn *MasterNodes) String() string { - return fmt.Sprintf("nodes:%v, master:%d", mn.nodes, mn.master) + return fmt.Sprintf("nodes:%v, master:%s", mn.nodes, mn.master) } func NewMasterNodes(bootstrapNode string) (mn *MasterNodes) {