I'm have a test that is failing intermittently where a future.get call is returning before the finally block is executed in the Callable, when the future is canceled. Here's the basic workflow:
future.cancel(true);
I see the InterrupedException thrown in the Callable
The main thread catches CancellationException from the future.get call
Now the Callable calls finally.
The test is always successful on my notebook and fails most of the time on our build server. Both my notebook and the build server are running OpenJDK 1.7. Any ideas?