• Bug
  • Status: Open
  • 2 Major
  • Resolution:
  • prodmgmt
  • Reporter: tgautier
  • September 19, 2008
  • 0
  • Watchers: 0
  • March 19, 2010

Description

Is there a strong reason for this:

[INFO] [bootjar] ********************************** ERROR *********************************** [INFO] [bootjar] * Boot jar creation failed. The following set of classes are [INFO] [bootjar] * non-adaptable types and have not been included in the boot jar. Please [INFO] [bootjar] * remove them in the section of the [INFO] [bootjar] \* terracotta config: [INFO] [bootjar] \* [java.util.concurrent.ExecutorCompletionService$QueueingFuture] [INFO] [bootjar] \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*

This class is tiny - here’s the source:

private class QueueingFuture extends FutureTask \{ QueueingFuture(Callable c) { super(c); } QueueingFuture(Runnable t, V r) { super(t, r); } protected void done() { completionQueue.add(this); } }

Comments