mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
5ce6bbf076
glide has its own requirements. My previous workaround caused me some code checkin errors. Need to fix this.
33 lines
738 B
Go
33 lines
738 B
Go
package operation
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
)
|
|
|
|
type ClusterStatusResult struct {
|
|
IsLeader bool `json:"IsLeader,omitempty"`
|
|
Leader string `json:"Leader,omitempty"`
|
|
Peers []string `json:"Peers,omitempty"`
|
|
}
|
|
|
|
func ListMasters(server string) ([]string, error) {
|
|
jsonBlob, err := util.Get("http://" + server + "/cluster/status")
|
|
glog.V(2).Info("list masters result :", string(jsonBlob))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var ret ClusterStatusResult
|
|
err = json.Unmarshal(jsonBlob, &ret)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
masters := ret.Peers
|
|
if ret.IsLeader {
|
|
masters = append(masters, ret.Leader)
|
|
}
|
|
return masters, nil
|
|
}
|