We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dba2eb6 commit c1de5a3Copy full SHA for c1de5a3
telemetry/errors.go
@@ -80,7 +80,7 @@ func classifyError(err error) string {
80
// isRetryableError returns true if the error is retryable.
81
// This is the inverse of isTerminalError.
82
//
83
-//nolint:unused // Will be used in Phase 8+
+//nolint:deadcode,unused // Will be used in Phase 8+
84
func isRetryableError(err error) bool {
85
return !isTerminalError(err)
86
}
@@ -100,7 +100,7 @@ func (e *httpError) Error() string {
100
101
// newHTTPError creates a new HTTP error.
102
103
104
func newHTTPError(statusCode int, message string) error {
105
return &httpError{
106
statusCode: statusCode,
0 commit comments