From 549f086bdad0c23b3a62ee328906d4d647a077e8 Mon Sep 17 00:00:00 2001 From: Julia Beliaeva Date: Mon, 6 Mar 2017 07:21:46 +0300 Subject: [PATCH] [git] do not catch a pce --- plugins/git4idea/src/git4idea/history/GitHistoryUtils.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java b/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java index c0d535539ebc..5f9a7e4eb2e7 100644 --- a/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java +++ b/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java @@ -340,6 +340,8 @@ public class GitHistoryUtils { resultAdapter.consume(record); } } + catch (ProcessCanceledException ignored) { + } catch (Throwable t) { LOG.error(t); exceptionConsumer.consume(new VcsException("Internal error " + t.getMessage(), t));