Browse Source

Update cassandra_store.go

pull/406/head
eshujiushiwo 8 years ago
committed by GitHub
parent
commit
3e29d0f75b
  1. 1
      weed/filer/cassandra_store/cassandra_store.go

1
weed/filer/cassandra_store/cassandra_store.go

@ -34,6 +34,7 @@ func NewCassandraStore(keyspace string, hosts ...string) (c *CassandraStore, err
c = &CassandraStore{} c = &CassandraStore{}
s := strings.Split(hosts, ",") s := strings.Split(hosts, ",")
if len(s) == 1 { if len(s) == 1 {
glog.V(0).Infof("Only one cassandra node to connect!A Cluster is Proposed" )
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[0], s[1]) c.cluster = gocql.NewCluster(s[0], s[1])

Loading…
Cancel
Save