MCPcopy Create free account
hub / github.com/TheThingsNetwork/lorawan-stack / retryableUplinkError

Function retryableUplinkError

pkg/networkserver/utils.go:509–515  ·  view source on GitHub ↗
(err error)

Source from the content-addressed store, hash-verified

507)
508
509func retryableUplinkError(err error) bool {
510 return errors.IsCanceled(err) ||
511 errors.IsDeadlineExceeded(err) ||
512 errors.IsResourceExhausted(err) ||
513 errors.IsAborted(err) ||
514 errors.IsUnavailable(err)
515}

Callers 2

Calls 5

IsCanceledFunction · 0.92
IsDeadlineExceededFunction · 0.92
IsResourceExhaustedFunction · 0.92
IsAbortedFunction · 0.92
IsUnavailableFunction · 0.92

Tested by

no test coverage detected