From 4a8723246df90cc0abfee530030387774372132c Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 11 Dec 2020 16:16:07 -0400 Subject: [PATCH] avoid transferrer committing the git-annex branch on shutdown The parent is will do it when it shuts down, and having both of them trying to do it at the same time seems like something good to avoid. --- Command/Transferrer.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/Transferrer.hs b/Command/Transferrer.hs index 116c64c5a3..0687305e71 100644 --- a/Command/Transferrer.hs +++ b/Command/Transferrer.hs @@ -22,7 +22,7 @@ import Types.Transferrer import qualified Utility.SimpleProtocol as Proto cmd :: Command -cmd = command "transferrer" SectionPlumbing "transfers content" +cmd = noCommit $ command "transferrer" SectionPlumbing "transfers content" paramNothing (withParams seek) seek :: CmdParams -> CommandSeek