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:
parent
3b0b606aa8
commit
cc3e3c0bc8
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue