aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreshujiushiwo <378013446@qq.com>2016-11-28 18:23:39 +0800
committerGitHub <noreply@github.com>2016-11-28 18:23:39 +0800
commite025fc00a49db8eebb6df8e83a3c890f55ca5c14 (patch)
treeb7266a0704eb350b546535859ecc135fe64791a6
parent5ee7fdc0cc424b508bec85fccab671285359dd2e (diff)
downloadseaweedfs-e025fc00a49db8eebb6df8e83a3c890f55ca5c14.tar.xz
seaweedfs-e025fc00a49db8eebb6df8e83a3c890f55ca5c14.zip
let filer use all cassandra server
let filer use all cassandra server
-rw-r--r--weed/filer/cassandra_store/cassandra_store.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/weed/filer/cassandra_store/cassandra_store.go b/weed/filer/cassandra_store/cassandra_store.go
index 35221d7ee..c9ea88735 100644
--- a/weed/filer/cassandra_store/cassandra_store.go
+++ b/weed/filer/cassandra_store/cassandra_store.go
@@ -34,11 +34,10 @@ func NewCassandraStore(keyspace string, hosts string) (c *CassandraStore, err er
c = &CassandraStore{}
s := strings.Split(hosts, ",")
if len(s) == 1 {
-
glog.V(2).Info("Only one cassandra node to connect!A Cluster is Proposed!Now using:", string(hosts))
c.cluster = gocql.NewCluster(hosts)
} else if len(s) > 1 {
- c.cluster = gocql.NewCluster(s[0], s[1])
+ c.cluster = gocql.NewCluster(s...)
}
c.cluster.Keyspace = keyspace
c.cluster.Consistency = gocql.Quorum