Two methods in CacheTestUtils don't call setDaemon() on the threads
-------------------------------------------------------------------

                 Key: HBASE-4428
                 URL: https://issues.apache.org/jira/browse/HBASE-4428
             Project: HBase
          Issue Type: Bug
            Reporter: Ted Yu
            Assignee: Ted Yu


hammerSingleKey() and hammerEviction() don't call t.setDaemon(true) on the 
threads they create.
The correct pattern is:
{code}
      t.setDaemon(true);
      ctx.addThread(t);
{code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to