On 5/16/2013 3:05 PM, bbarani wrote:
I am using SOLR 4.3.0...I am currently getting the below error when running test for custom SOLR components. The tests pass without any issues but I am getting the below error after the tests are done.. Can someone let me how to resolve this issue? thread leaked from SUITE scope at com.solr.activemq.TestWriter: [junit] 1) Thread[id=19, name=ActiveMQ Scheduler, state=WAITING, group=TGRP-TestWriter]
It looks like your code incorporates ActiveMQ. That software apparently starts a scheduler thread, and you aren't shutting that down. I'm guessing that part of ActiveMQ initialization is creating some kind of scheduler object, and that you will need to call a close() or shutdown() method on that object as you wrap things up.
If that doesn't help, you'll need to consult support resources for ActiveMQ. Thanks, Shawn