(ch <-chan cliproxyexecutor.StreamChunk)
| 1644 | } |
| 1645 | |
| 1646 | func discardStreamChunks(ch <-chan cliproxyexecutor.StreamChunk) { |
| 1647 | if ch == nil { |
| 1648 | return |
| 1649 | } |
| 1650 | go func() { |
| 1651 | for range ch { |
| 1652 | } |
| 1653 | }() |
| 1654 | } |
| 1655 | |
| 1656 | type streamBootstrapError struct { |
| 1657 | cause error |
no outgoing calls
no test coverage detected