Chris Lohfink created CASSANDRA-8344:
----------------------------------------
Summary: QueryProcessor evictionCheckTimer not named and non-daemon
Key: CASSANDRA-8344
URL: https://issues.apache.org/jira/browse/CASSANDRA-8344
Project: Cassandra
Issue Type: Improvement
Reporter: Chris Lohfink
Assignee: Chris Lohfink
Priority: Trivial
QueryProcessor's evictionCheckTimer isn't daemon and is not named. Makes it
difficult to track down when blocking application (i.e. forked benchmarks from
JMH will freeze waiting for completion).
for what its worth, little hack to work around it to make tests complete:
{code}
Field f =
QueryProcessor.class.getDeclaredField("evictionCheckTimer");
f.setAccessible(true);
((ScheduledExecutorService)f.get(null)).shutdown();
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)