()
| 1690 | } |
| 1691 | |
| 1692 | func (e *streamBootstrapError) Headers() http.Header { |
| 1693 | if e == nil { |
| 1694 | return nil |
| 1695 | } |
| 1696 | return cloneHTTPHeader(e.headers) |
| 1697 | } |
| 1698 | |
| 1699 | func streamErrorResult(headers http.Header, err error) *cliproxyexecutor.StreamResult { |
| 1700 | ch := make(chan cliproxyexecutor.StreamChunk, 1) |
no test coverage detected