AMQ-7227 - ensure db.free file is moved in scheduler store upgrade process

This commit is contained in:
gtully 2019-06-14 10:01:57 +01:00
parent ac01af8dec
commit 4d5e41ca28
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ public class JobSchedulerStoreImpl extends AbstractKahaDBStore implements JobSch
@Override
public boolean accept(File dir, String name) {
if (name.endsWith(".data") || name.endsWith(".redo") || name.endsWith(".log")) {
if (name.endsWith(".data") || name.endsWith(".redo") || name.endsWith(".log") || name.endsWith(".free")) {
return true;
}
return false;