fix journal purging
This commit is contained in:
parent
acdbd0c028
commit
3f8520ed95
1 changed files with 22 additions and 18 deletions
|
@ -109,6 +109,7 @@ public class Journal {
|
||||||
writeLock.lock();
|
writeLock.lock();
|
||||||
PathMatcher pathMatcher = journalPath.getFileSystem().getPathMatcher("glob:*.request");
|
PathMatcher pathMatcher = journalPath.getFileSystem().getPathMatcher("glob:*.request");
|
||||||
try {
|
try {
|
||||||
|
if (Files.exists(journalPath.resolve("success"))) {
|
||||||
Files.walkFileTree(journalPath.resolve("success"), EnumSet.of(FileVisitOption.FOLLOW_LINKS), Integer.MAX_VALUE, new SimpleFileVisitor<>() {
|
Files.walkFileTree(journalPath.resolve("success"), EnumSet.of(FileVisitOption.FOLLOW_LINKS), Integer.MAX_VALUE, new SimpleFileVisitor<>() {
|
||||||
@Override
|
@Override
|
||||||
public FileVisitResult visitFile(Path p, BasicFileAttributes a) throws IOException {
|
public FileVisitResult visitFile(Path p, BasicFileAttributes a) throws IOException {
|
||||||
|
@ -120,6 +121,7 @@ public class Journal {
|
||||||
return FileVisitResult.CONTINUE;
|
return FileVisitResult.CONTINUE;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
} finally {
|
} finally {
|
||||||
writeLock.unlock();
|
writeLock.unlock();
|
||||||
}
|
}
|
||||||
|
@ -130,6 +132,7 @@ public class Journal {
|
||||||
writeLock.lock();
|
writeLock.lock();
|
||||||
PathMatcher pathMatcher = journalPath.getFileSystem().getPathMatcher("glob:*.request");
|
PathMatcher pathMatcher = journalPath.getFileSystem().getPathMatcher("glob:*.request");
|
||||||
try {
|
try {
|
||||||
|
if (Files.exists(journalPath.resolve("fail"))) {
|
||||||
Files.walkFileTree(journalPath.resolve("fail"), EnumSet.of(FileVisitOption.FOLLOW_LINKS), Integer.MAX_VALUE, new SimpleFileVisitor<>() {
|
Files.walkFileTree(journalPath.resolve("fail"), EnumSet.of(FileVisitOption.FOLLOW_LINKS), Integer.MAX_VALUE, new SimpleFileVisitor<>() {
|
||||||
@Override
|
@Override
|
||||||
public FileVisitResult visitFile(Path p, BasicFileAttributes a) throws IOException {
|
public FileVisitResult visitFile(Path p, BasicFileAttributes a) throws IOException {
|
||||||
|
@ -141,6 +144,7 @@ public class Journal {
|
||||||
return FileVisitResult.CONTINUE;
|
return FileVisitResult.CONTINUE;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
} finally {
|
} finally {
|
||||||
writeLock.unlock();
|
writeLock.unlock();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue