mirror of https://github.com/apache/lucene.git
SOLR-12524: mention ids in CdcrLogReader.forwardSeek's assert
This commit is contained in:
parent
e1d2749b20
commit
ab666ff9cf
|
@ -608,7 +608,7 @@ public class CdcrUpdateLog extends UpdateLog {
|
|||
tlogs.removeLast();
|
||||
currentTlog = tlogs.peekLast();
|
||||
}
|
||||
assert this.tlogs.peekLast().id == subReader.tlogs.peekLast().id;
|
||||
assert this.tlogs.peekLast().id == subReader.tlogs.peekLast().id : this.tlogs.peekLast().id+" != "+subReader.tlogs.peekLast().id;
|
||||
this.pointer.set(currentTlog.tlogFile);
|
||||
this.lastPositionInTLog = subReader.lastPositionInTLog;
|
||||
this.numRecordsReadInCurrentTlog = subReader.numRecordsReadInCurrentTlog;
|
||||
|
|
Loading…
Reference in New Issue