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
A handful of functions in processor.clj use giant let blocks with heavy de-structuring to parse relevant portions of error data, as returned by functions like (Throwable->map).
Consider using clojure.main/ex-triage instead to simplify the data we are passing around and make extracting values easier, as it seems to do a lot of the heavy error analysis for us.
The text was updated successfully, but these errors were encountered:
A handful of functions in processor.clj use giant
let
blocks with heavy de-structuring to parse relevant portions of error data, as returned by functions like(Throwable->map)
.Consider using clojure.main/ex-triage instead to simplify the data we are passing around and make extracting values easier, as it seems to do a lot of the heavy error analysis for us.
The text was updated successfully, but these errors were encountered: