Welcome! Please see the About page for a little more info on how this works.

0 votes
in Clojure by

If you use Thread.setDefaultUncaughtExceptionHandler to catch all application exceptions, and then throw an exception in a future, that exception will get swallowed up in deployment environments that don't watch stdout. It seems that the agent's executors ought to delegate to the global handler.

This issue bit us, in that we deploy and monitor our system only through its logs and metrics, and never actually saw that exceptions were being thrown in futures.

1 Answer

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJ-1272 (reported by alex+import)
...