fix text.

This commit is contained in:
Chris Lu 2016-11-28 20:07:27 -08:00
parent 924f797c58
commit 64509dd6ca

View file

@ -3,6 +3,7 @@ package cassandra_store
import ( import (
"fmt" "fmt"
"strings" "strings"
"github.com/chrislusf/seaweedfs/weed/filer" "github.com/chrislusf/seaweedfs/weed/filer"
"github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/glog"
@ -32,13 +33,13 @@ type CassandraStore struct {
func NewCassandraStore(keyspace string, hosts string) (c *CassandraStore, err error) { func NewCassandraStore(keyspace string, hosts string) (c *CassandraStore, err error) {
c = &CassandraStore{} c = &CassandraStore{}
s := strings.Split(hosts, ",") s := strings.Split(hosts, ",")
if len(s) == 1 { if len(s) == 1 {
glog.V(2).Info("Only one cassandra node to connect!A Cluster is Proposed!Now using:", string(hosts)) glog.V(2).Info("Only one cassandra node to connect! A cluster is Recommended! Now using:", string(hosts))
c.cluster = gocql.NewCluster(hosts) c.cluster = gocql.NewCluster(hosts)
} else if len(s) > 1 { } else if len(s) > 1 {
c.cluster = gocql.NewCluster(s...) c.cluster = gocql.NewCluster(s...)
} }
c.cluster.Keyspace = keyspace c.cluster.Keyspace = keyspace
c.cluster.Consistency = gocql.Quorum c.cluster.Consistency = gocql.Quorum
c.session, err = c.cluster.CreateSession() c.session, err = c.cluster.CreateSession()