aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreshujiushiwo <378013446@qq.com>2016-11-28 16:03:39 +0800
committerGitHub <noreply@github.com>2016-11-28 16:03:39 +0800
commit5ee7fdc0cc424b508bec85fccab671285359dd2e (patch)
tree06d3271c6adf0f8bcdba8d2d1f728e544a24562c
parent3450eff2886f38594154bee4b1b389787c0be575 (diff)
downloadseaweedfs-5ee7fdc0cc424b508bec85fccab671285359dd2e.tar.xz
seaweedfs-5ee7fdc0cc424b508bec85fccab671285359dd2e.zip
fix hosts strings
fix hosts strings
-rw-r--r--weed/filer/cassandra_store/cassandra_store.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filer/cassandra_store/cassandra_store.go b/weed/filer/cassandra_store/cassandra_store.go
index 6b7779bb6..35221d7ee 100644
--- a/weed/filer/cassandra_store/cassandra_store.go
+++ b/weed/filer/cassandra_store/cassandra_store.go
@@ -30,13 +30,13 @@ type CassandraStore struct {
session *gocql.Session
}
-func NewCassandraStore(keyspace string, hosts ...string) (c *CassandraStore, err error) {
+func NewCassandraStore(keyspace string, hosts string) (c *CassandraStore, err error) {
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...)
+ c.cluster = gocql.NewCluster(hosts)
} else if len(s) > 1 {
c.cluster = gocql.NewCluster(s[0], s[1])
}