Re: ClassNotFoundException using try inside core.async go block

2015-04-29 Thread Chap Lovejoy
Thanks for checking into it. Using current master seems to fix it for me as well. I'll use a local copy until the next release. Thanks again! chap On Tuesday, April 28, 2015 at 8:44:59 PM UTC-4, Alex Miller wrote: > > I think this is a bug in the fairly old tools.analyzer version used in the >

Re: ClassNotFoundException using try inside core.async go block

2015-04-28 Thread Alex Miller
I think this is a bug in the fairly old tools.analyzer version used in the latest released version. That's actually been updated for the next release and does not seem reproducible to me there. On Tuesday, April 28, 2015 at 6:04:19 PM UTC-5, Chap Lovejoy wrote: > > I'm running into a strange e

ClassNotFoundException using try inside core.async go block

2015-04-28 Thread Chap Lovejoy
I'm running into a strange exception trying to handle exceptions within a go block. So far this is the simplest test case I've gotten to fail: (ns test-async (require [clojure.core.async :refer [go >!] :as async])) (defn test-chan [chan] (go (try (>! chan) (cat