(streamErr http2.StreamError)
| 322 | } |
| 323 | |
| 324 | func isPeerHTTP2StreamError(streamErr http2.StreamError) bool { |
| 325 | return streamErr.Cause != nil && streamErr.Cause.Error() == http2PeerResetCause |
| 326 | } |
| 327 | |
| 328 | func isRetryableHTTP2StreamCode(code http2.ErrCode) bool { |
| 329 | switch code { |
no test coverage detected