From a0247e7c9ec821b3672cfbb6a08a0689ab0fe8bf Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Thu, 23 Apr 2020 10:08:22 +0200 Subject: [PATCH] Ignore a few more git exceptions --- lib/core/git_repo.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/core/git_repo.dart b/lib/core/git_repo.dart index 14b24445..6fb84270 100644 --- a/lib/core/git_repo.dart +++ b/lib/core/git_repo.dart @@ -185,6 +185,9 @@ const ignoredMessages = [ 'unable to exchange encryption keys', 'the key you are authenticating with has been marked as read only', 'transport read', + "unpacking the sent packfile failed on the remote", + "key permission denied", // gogs + "failed getting response", ]; bool shouldLogGitException(GitException ex) {