>From babf35c1c73c52d0d2b1490bdc541404a8b143eb Mon Sep 17 00:00:00 2001 From: Petr Hrebejk Date: Mon, 30 Nov 2020 12:34:11 +0100 Subject: [PATCH] Applying the fix for concurrent repack. --- .../src/org/eclipse/jgit/internal/storage/file/PackFile.java | 1 + 1 file changed, 1 insertion(+) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackFile.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackFile.java index 254c02023..e112fe744 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackFile.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackFile.java @@ -650,6 +650,7 @@ synchronized boolean endWindowCache() { private void doOpen() throws IOException { if (invalid) { + openFail(true, invalidatingCause); throw new PackInvalidException(packFile, invalidatingCause); } try { -- 2.25.1