Browse Source

Run the bulk block archiver any time that it isn't reported to be up to date. This should allow it to re-run if the user quits the core before it completes.

bootstrap
CalDescent 3 years ago
parent
commit
f09fb5a209
  1. 6
      src/main/java/org/qortal/repository/hsqldb/HSQLDBDatabaseArchiving.java

6
src/main/java/org/qortal/repository/hsqldb/HSQLDBDatabaseArchiving.java

@ -33,9 +33,9 @@ public class HSQLDBDatabaseArchiving {
public static boolean buildBlockArchive(Repository repository, long fileSizeTarget) throws DataException {
// Only build the archive if we have never done so before
int archiveHeight = repository.getBlockArchiveRepository().getBlockArchiveHeight();
if (archiveHeight > 0) {
// Only build the archive if we haven't already got one that is up to date
boolean upToDate = BlockArchiveWriter.isArchiverUpToDate(repository);
if (upToDate) {
// Already archived
return false;
}

Loading…
Cancel
Save