HBASE-17302 The region flush request disappeared from flushQueue (Guangxu Cheng)
This commit is contained in:
parent
2333596279
commit
de98f68408
|
@ -814,7 +814,11 @@ class MemStoreFlusher implements FlushRequester {
|
||||||
if (obj == null || getClass() != obj.getClass()) {
|
if (obj == null || getClass() != obj.getClass()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
Delayed other = (Delayed) obj;
|
FlushRegionEntry other = (FlushRegionEntry) obj;
|
||||||
|
if (!this.region.getRegionInfo().getRegionNameAsString().equals(
|
||||||
|
other.region.getRegionInfo().getRegionNameAsString())) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
return compareTo(other) == 0;
|
return compareTo(other) == 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue