Browse Source

Merge branch 'stable-4.9' into stable-4.10

* stable-4.9:
  Ensure DirectoryStream is closed promptly

Change-Id: I62674a1db9266c04fb353ab697e2c0a24a7369b7
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v5.0.0.201806131550-r
Matthias Sohn 6 years ago
parent
commit
e512d919ec
1 changed files with 13 additions and 13 deletions
  1. 13
    13
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/GC.java

+ 13
- 13
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/GC.java View File

@@ -967,19 +967,19 @@ public class GC {
private void deleteTempPacksIdx() {
Path packDir = repo.getObjectDatabase().getPackDirectory().toPath();
Instant threshold = Instant.now().minus(1, ChronoUnit.DAYS);
try {
Files.newDirectoryStream(packDir, "gc_*_tmp") //$NON-NLS-1$
.forEach(t -> {
try {
Instant lastModified = Files.getLastModifiedTime(t)
.toInstant();
if (lastModified.isBefore(threshold)) {
Files.deleteIfExists(t);
}
} catch (IOException e) {
LOG.error(e.getMessage(), e);
}
});
try (DirectoryStream<Path> stream =
Files.newDirectoryStream(packDir, "gc_*_tmp")) { //$NON-NLS-1$
stream.forEach(t -> {
try {
Instant lastModified = Files.getLastModifiedTime(t)
.toInstant();
if (lastModified.isBefore(threshold)) {
Files.deleteIfExists(t);
}
} catch (IOException e) {
LOG.error(e.getMessage(), e);
}
});
} catch (IOException e) {
LOG.error(e.getMessage(), e);
}

Loading…
Cancel
Save