machines.go 174 B

12345678
  1. package main
  2. // machineNum returns the number of machines in the cluster
  3. func machineNum() int {
  4. response, _ := etcdStore.RawGet("_etcd/machines")
  5. return len(response)
  6. }