Commit 2e154bb5 authored by Julia Beliaeva's avatar Julia Beliaeva
Browse files

[vcs-log] do not catch PCE

parent 520bd573
Branches unavailable Tags unavailable
No related merge requests found
Showing with 1 addition and 0 deletions
+1 -0
......@@ -319,6 +319,7 @@ public class VcsLogPersistentIndex implements VcsLogIndex, Disposable {
}
private void processRuntimeException(@NotNull RuntimeException e) {
if (e instanceof ProcessCanceledException) throw e;
if (myIndexStorage != null) myIndexStorage.markCorrupted();
if (e.getCause() instanceof IOException || e.getCause() instanceof StorageException) {
myFatalErrorsConsumer.consume(this, e);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment