mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Update cassandra_store.go
This commit is contained in:
parent
5385bf9555
commit
89ccb6be05
|
@ -34,8 +34,11 @@ 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 {
|
||||||
|
fmt.Println("000")
|
||||||
c.cluster = gocql.NewCluster(hosts...)
|
c.cluster = gocql.NewCluster(hosts...)
|
||||||
} else if len(s) > 1 {
|
} else if len(s) > 1 {
|
||||||
|
fmt.Println("111",s[0])
|
||||||
|
fmt.Println("222",s[1])
|
||||||
c.cluster = gocql.NewCluster(s[0], s[1])
|
c.cluster = gocql.NewCluster(s[0], s[1])
|
||||||
}
|
}
|
||||||
c.cluster.Keyspace = keyspace
|
c.cluster.Keyspace = keyspace
|
||||||
|
|
Loading…
Reference in a new issue