From 89ccb6be05a82631377ddbdbe117df51958bbbf1 Mon Sep 17 00:00:00 2001 From: eshujiushiwo <378013446@qq.com> Date: Mon, 28 Nov 2016 12:16:51 +0800 Subject: [PATCH] Update cassandra_store.go --- weed/filer/cassandra_store/cassandra_store.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/weed/filer/cassandra_store/cassandra_store.go b/weed/filer/cassandra_store/cassandra_store.go index e9e1d9222..3005fead9 100644 --- a/weed/filer/cassandra_store/cassandra_store.go +++ b/weed/filer/cassandra_store/cassandra_store.go @@ -34,8 +34,11 @@ func NewCassandraStore(keyspace string, hosts ...string) (c *CassandraStore, err c = &CassandraStore{} s := strings.Split(hosts, ",") if len(s) == 1 { + fmt.Println("000") c.cluster = gocql.NewCluster(hosts...) } else if len(s) > 1 { + fmt.Println("111",s[0]) + fmt.Println("222",s[1]) c.cluster = gocql.NewCluster(s[0], s[1]) } c.cluster.Keyspace = keyspace