mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
edae676913
2. remove operation package dependency on storage
28 lines
556 B
Go
28 lines
556 B
Go
package operation
|
|
|
|
import (
|
|
"code.google.com/p/weed-fs/go/glog"
|
|
"code.google.com/p/weed-fs/go/util"
|
|
"encoding/json"
|
|
)
|
|
|
|
type ClusterStatusResult struct {
|
|
IsLeader bool
|
|
Leader string
|
|
Peers []string
|
|
}
|
|
|
|
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
|
|
}
|
|
return ret.Peers, nil
|
|
}
|