ARTEMIS-4667 Fixing replay manager with replication on the large message case

This commit is contained in:
Clebert Suconic 2024-06-12 18:32:18 -04:00 committed by clebertsuconic
parent dd6c74fc1c
commit 7f038de9ad
1 changed files with 5 additions and 0 deletions

View File

@ -57,6 +57,11 @@ public class ReplicatedJournal implements Journal {
private final byte journalID;
@Override
public boolean isHistory() {
return localJournal.isHistory();
}
@Override
public void setRemoveExtraFilesOnLoad(boolean removeExtraFilesOnLoad) {
this.localJournal.setRemoveExtraFilesOnLoad(removeExtraFilesOnLoad);