aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2016-11-28 20:07:27 -0800
committerChris Lu <chris.lu@gmail.com>2016-11-28 20:07:27 -0800
commit64509dd6caa472b3ce590df0c8e6757907697088 (patch)
tree23020c4f9f832f0d0a0bd2d40ab2782fc4f05fa4
parent924f797c58d89eb1d649cc44ace988759435535d (diff)
downloadseaweedfs-64509dd6caa472b3ce590df0c8e6757907697088.tar.xz
seaweedfs-64509dd6caa472b3ce590df0c8e6757907697088.zip
fix text.
-rw-r--r--weed/filer/cassandra_store/cassandra_store.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/weed/filer/cassandra_store/cassandra_store.go b/weed/filer/cassandra_store/cassandra_store.go
index c9ea88735..75af48bcd 100644
--- a/weed/filer/cassandra_store/cassandra_store.go
+++ b/weed/filer/cassandra_store/cassandra_store.go
@@ -3,6 +3,7 @@ package cassandra_store
import (
"fmt"
"strings"
+
"github.com/chrislusf/seaweedfs/weed/filer"
"github.com/chrislusf/seaweedfs/weed/glog"
@@ -32,13 +33,13 @@ type CassandraStore struct {
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)
- } else if len(s) > 1 {
- c.cluster = gocql.NewCluster(s...)
- }
+ s := strings.Split(hosts, ",")
+ if len(s) == 1 {
+ glog.V(2).Info("Only one cassandra node to connect! A cluster is Recommended! Now using:", string(hosts))
+ c.cluster = gocql.NewCluster(hosts)
+ } else if len(s) > 1 {
+ c.cluster = gocql.NewCluster(s...)
+ }
c.cluster.Keyspace = keyspace
c.cluster.Consistency = gocql.Quorum
c.session, err = c.cluster.CreateSession()