HDFS-16793. Fix failed UT
This commit is contained in:
parent
dade7665fe
commit
5f1de83d50
|
@ -244,7 +244,8 @@ public class FileJournalManager implements JournalManager {
|
||||||
if (elf.getFirstTxId() >= firstTxId) {
|
if (elf.getFirstTxId() >= firstTxId) {
|
||||||
ret.add(new RemoteEditLog(elf.firstTxId, elf.lastTxId,
|
ret.add(new RemoteEditLog(elf.firstTxId, elf.lastTxId,
|
||||||
elf.isInProgress()));
|
elf.isInProgress()));
|
||||||
} else if (elf.getFirstTxId() < firstTxId && firstTxId <= elf.getLastTxId()) {
|
} else if (elf.getFirstTxId() < firstTxId &&
|
||||||
|
(firstTxId <= elf.getLastTxId() || elf.isInProgress())) {
|
||||||
// If the firstTxId is in the middle of an edit log segment. Return this
|
// If the firstTxId is in the middle of an edit log segment. Return this
|
||||||
// anyway and let the caller figure out whether it wants to use it.
|
// anyway and let the caller figure out whether it wants to use it.
|
||||||
ret.add(new RemoteEditLog(elf.firstTxId, elf.lastTxId,
|
ret.add(new RemoteEditLog(elf.firstTxId, elf.lastTxId,
|
||||||
|
|
Loading…
Reference in New Issue