(c *LocalCluster)
| 183 | } |
| 184 | |
| 185 | func (z *zero) assignURL(c *LocalCluster) (string, error) { |
| 186 | publicPort, err := publicPort(c.dcli, z, zeroHttpPort) |
| 187 | if err != nil { |
| 188 | return "", err |
| 189 | } |
| 190 | return "http://0.0.0.0:" + publicPort + "/assign", nil |
| 191 | } |
| 192 | |
| 193 | func (z *zero) alphaURL(c *LocalCluster) (string, error) { |
| 194 | return "", errNotImplemented |
nothing calls this directly
no test coverage detected