[vcs] Don't throw cancellation exception during git log disposing, when a commit loading task was already canceled.

GitOrigin-RevId: d1ccb1881c887a9383bbc47052edf1ca76fded5f
This commit is contained in:
Denis Zaichenko
2024-06-26 14:27:47 +02:00
committed by intellij-monorepo-bot
parent 0947d55390
commit 78128f9dae

View File

@@ -220,6 +220,8 @@ public abstract class SingleTaskController<Request, Result> implements Disposabl
LOG.debug(e);
}
}
catch (CancellationException ignored) {
}
catch (TimeoutException e) {
if (longTimeOut) LOG.warn(formMessage("Wait time out "), e);
}