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

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1172053 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2011-09-17 19:26:09 +00:00
parent 3b0b606aa8
commit cc3e3c0bc8
2 changed files with 3 additions and 0 deletions

View File

@ -285,6 +285,7 @@ Release 0.91.0 - Unreleased
HBASE-4420 MasterObserver preMove() and postMove() should throw
IOException instead of UnknownRegionException
HBASE-4419 Resolve build warning messages (Praveen Patibandia)
HBASE-4428 Two methods in CacheTestUtils don't call setDaemon() on the threads
IMPROVEMENTS
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)

View File

@ -174,6 +174,7 @@ public class CacheTestUtils {
}
};
t.setDaemon(true);
ctx.addThread(t);
}
@ -217,6 +218,7 @@ public class CacheTestUtils {
}
};
t.setDaemon(true);
ctx.addThread(t);
}