Skip to content
Snippets Groups Projects
Unverified Commit 638d79c4 authored by Alexander Solovyov's avatar Alexander Solovyov Committed by GitHub
Browse files

[serdes] a bit more descriptive exceptions (#45093)

parent bd935523
No related branches found
No related tags found
No related merge requests found
......@@ -338,7 +338,14 @@
(defn- log-and-extract-one
[model opts instance]
(log/infof "Extracting %s %s" model (:id instance))
(extract-one model opts instance))
(try
(extract-one model opts instance)
(catch Exception e
(throw (ex-info (format "Exception extracting %s %s" model (:id instance))
{:model model
:id (:id instance)
:entity_id (:entity_id instance)}
e)))))
(defmethod extract-all :default [model opts]
(eduction (map (partial log-and-extract-one model opts))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment