(orgID string)
| 43 | if h, p, err := net.SplitHostPort(endpoint); err == nil { |
| 44 | host = h |
| 45 | if n, convErr := strconv.Atoi(p); convErr == nil { |
| 46 | port = n |
| 47 | } |
| 48 | } |
| 49 | target := provisioner.CatalogEndpoint{ |
| 50 | Host: host, |
| 51 | Port: port, |
| 52 | User: user, |
| 53 | Database: database, |
| 54 | Password: password, |
nothing calls this directly
no test coverage detected