You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default Pool data structure can not match the Couchbase RESTful API pool/default. Pool struct can not only cover 3 fields while the API(Version: EE6.0.0) has more.
// A Pool of nodes and buckets.
type Pool struct {
BucketMap map[string]*Bucket
Nodes []Node
BucketURL map[string]string `json:"buckets"`
client Client
}
I think ClusterName is an important field for cluster overview, and the structure can match the API better if the other fields in the API have been added.
The text was updated successfully, but these errors were encountered:
The default Pool data structure can not match the Couchbase RESTful API pool/default. Pool struct can not only cover 3 fields while the API(Version: EE6.0.0) has more.
I think ClusterName is an important field for cluster overview, and the structure can match the API better if the other fields in the API have been added.
The text was updated successfully, but these errors were encountered: