HBASE-17302 The region flush request disappeared from flushQueue - addendum (Guangxu Cheng)
This commit is contained in:
parent
439711e0a0
commit
5f1691d06e
|
@ -800,8 +800,8 @@ class MemStoreFlusher implements FlushRequester {
|
|||
return false;
|
||||
}
|
||||
FlushRegionEntry other = (FlushRegionEntry) obj;
|
||||
if (!this.region.getRegionInfo().getRegionNameAsString().equals(
|
||||
other.region.getRegionInfo().getRegionNameAsString())) {
|
||||
if (!Bytes.equals(this.region.getRegionInfo().getRegionName(),
|
||||
other.region.getRegionInfo().getRegionName())) {
|
||||
return false;
|
||||
}
|
||||
return compareTo(other) == 0;
|
||||
|
|
Loading…
Reference in New Issue