You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently working with AWSCore.jl and came across macro usage being over the line limit. I wasn't able to find a guideline for it here, so I figured I'd open it up to discussion.
Examples:
@delay_retryif e isa AWSException &&
(http_status(e.cause) == TOO_MANY_REQUESTS ||ecode(e) in throttling_error_codes)
end@retryif e isa AWSException && (
header(e.cause, "crc32body") =="x-amz-crc32"||ecode(e) in ("BadDigest", "RequestTimeout", "RequestTimeoutException")
)
end@retryif:messageinfieldnames(typeof(e)) &&occursin("Signature expired", e.message) end
The text was updated successfully, but these errors were encountered:
I'm currently working with
AWSCore.jl
and came across macro usage being over the line limit. I wasn't able to find a guideline for it here, so I figured I'd open it up to discussion.Examples:
The text was updated successfully, but these errors were encountered: