diff options
| author | eshujiushiwo <378013446@qq.com> | 2016-11-28 15:14:19 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-28 15:14:19 +0800 |
| commit | 3e29d0f75b974294718c5050ef5adabcbbab2e51 (patch) | |
| tree | 7dca797adbe770e0c73e50acd9707ab7ff474d04 | |
| parent | 809aa028ec7be5c6f19945d81d3b3456780b2bc2 (diff) | |
| download | seaweedfs-3e29d0f75b974294718c5050ef5adabcbbab2e51.tar.xz seaweedfs-3e29d0f75b974294718c5050ef5adabcbbab2e51.zip | |
Update cassandra_store.go
| -rw-r--r-- | weed/filer/cassandra_store/cassandra_store.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/filer/cassandra_store/cassandra_store.go b/weed/filer/cassandra_store/cassandra_store.go index 0431872fa..f4ff5ef3e 100644 --- a/weed/filer/cassandra_store/cassandra_store.go +++ b/weed/filer/cassandra_store/cassandra_store.go @@ -34,6 +34,7 @@ func NewCassandraStore(keyspace string, hosts ...string) (c *CassandraStore, err c = &CassandraStore{} s := strings.Split(hosts, ",") if len(s) == 1 { + glog.V(0).Infof("Only one cassandra node to connect!A Cluster is Proposed" ) c.cluster = gocql.NewCluster(hosts...) } else if len(s) > 1 { c.cluster = gocql.NewCluster(s[0], s[1]) |
