HBASE-26924 Fix log parameter error and spelling error (#4318)
Signed-off-by: Duo Zhang <zhangduo@apache.org> Signed-off-by: Pankaj Kumar <pankajkumar@apache.org>
This commit is contained in:
parent
3e09e87fad
commit
003c572246
|
@ -111,7 +111,7 @@ public class ConstantSizeRegionSplitPolicy extends RegionSplitPolicy {
|
|||
for (HStore store : region.getStores()) {
|
||||
long size = store.getSize();
|
||||
if (size > sizeToCheck) {
|
||||
LOG.debug("ShouldSplit because {} size={}, sizeToCheck={}{}",
|
||||
LOG.debug("ShouldSplit because {} size={}, sizeToCheck={}",
|
||||
store.getColumnFamilyName(), StringUtils.humanSize(size),
|
||||
StringUtils.humanSize(sizeToCheck));
|
||||
return true;
|
||||
|
|
|
@ -587,7 +587,7 @@ public class TestReplicationSource {
|
|||
|
||||
/**
|
||||
* Test ReplicationSource keeps retrying startup indefinitely without blocking the main thread,
|
||||
* when <b>eplication.source.regionserver.abort</b> is set to false.
|
||||
* when <b>replication.source.regionserver.abort</b> is set to false.
|
||||
*/
|
||||
@Test
|
||||
public void testAbortFalseOnErrorDoesntBlockMainThread() throws IOException {
|
||||
|
|
Loading…
Reference in New Issue