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:
weimingdiit 2022-04-04 20:20:30 +08:00 committed by GitHub
parent 3e09e87fad
commit 003c572246
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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 {