(c *LocalCluster)
| 195 | } |
| 196 | |
| 197 | func (z *zero) zeroURL(c *LocalCluster) (string, error) { |
| 198 | publicPort, err := publicPort(c.dcli, z, zeroGrpcPort) |
| 199 | if err != nil { |
| 200 | return "", err |
| 201 | } |
| 202 | return "0.0.0.0:" + publicPort + "", nil |
| 203 | } |
| 204 | |
| 205 | type alpha struct { |
| 206 | id int |
nothing calls this directly
no test coverage detected