Re: RejectedExecutionException? I don't think I was using anything concurrent?

2015-07-17 Thread Zach Tellman
A RejectedExecutionException is thrown when a thread-pool's queue is full. Try using 'jstack' to take a thread dump, and see who has spun up a thread pool under the covers. Possible culprits include 'at-at' and 'carmine'. On Friday, July 17, 2015 at 11:01:05 AM UTC-7, sugarste...@gmail.com w

Re: RejectedExecutionException? I don't think I was using anything concurrent?

2015-07-17 Thread sugarsteviahoney
Okay, this error seems to be triggered by a NullPointerException which seems to arise when I try to fetch a non-existent document out of Redis. I am a bit of a noob, so perhaps someone can explain how this works. I'm not aware of using any of Clojure's concurrency tools in this (very simple) a