(code http2.ErrCode)
| 326 | } |
| 327 | |
| 328 | func isRetryableHTTP2StreamCode(code http2.ErrCode) bool { |
| 329 | switch code { |
| 330 | case http2.ErrCodeNo, |
| 331 | http2.ErrCodeInternal, |
| 332 | http2.ErrCodeRefusedStream, |
| 333 | http2.ErrCodeCancel, |
| 334 | http2.ErrCodeEnhanceYourCalm: |
| 335 | return true |
| 336 | default: |
| 337 | return false |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | func streamIncompleteClassification( |
| 342 | lowerMessage string, |
no outgoing calls
no test coverage detected