Skip to content
Snippets Groups Projects
Commit 66c2ccff authored by Cam Saul's avatar Cam Saul
Browse files

uncomment exception handler

parent 6a00b439
No related branches found
No related tags found
No related merge requests found
......@@ -41,12 +41,11 @@
(defn- wrap-catch-exceptions [qp]
(fn [query]
(qp query)
#_(try (qp query)
(catch Throwable e
(.printStackTrace e)
{:status :failed
:error (.getMessage e)}))))
(try (qp query)
(catch Throwable e
(.printStackTrace e)
{:status :failed
:error (.getMessage e)}))))
(defn- pre-expand [qp]
......
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