Close releases any resources associated with the instance.
()
| 111 | |
| 112 | // Close releases any resources associated with the instance. |
| 113 | func (p *ProxyExec) Close() { |
| 114 | p.cancel() |
| 115 | for _, c := range p.closers { |
| 116 | c.Close() |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | // WaitForServe waits until the proxy ready to serve traffic by waiting for a |
| 121 | // known log message (i.e. "ready for new connections"). Returns any output |
no outgoing calls
no test coverage detected