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
In the catch block [1] inside robert.bruce/retry, error-hook is called on t and THEN try-again? is called, but this means that the error hook can't know the type of Throwable it's getting - even if :classes lists only one.
I propose the evaluation order be reversed.
The text was updated successfully, but these errors were encountered:
I have thought about this a lot, and I can totally see that there's a need for a hook that has access to the thing that you're asking for, but it's different than what the error-hook is for.
I'm going to noodle on this a bit more and see if I can get something in that gives you what you're asking for, but leaves the error-hook as it is.
In the
catch
block [1] insiderobert.bruce/retry
,error-hook
is called ont
and THENtry-again?
is called, but this means that the error hook can't know the type of Throwable it's getting - even if:classes
lists only one.I propose the evaluation order be reversed.
The text was updated successfully, but these errors were encountered: