Periodically flush git command queue, to avoid boating memory usage too much.
Since the queue is flushed in between subcommand actions being run, there should be no issues with actions that expect to queue up some stuff and have it run after they do other stuff. So I didn't have to audit for such assumptions.
This commit is contained in:
parent
77f45e4e45
commit
bc51387e6d
14 changed files with 101 additions and 59 deletions
|
@ -36,6 +36,7 @@ import LocationLog
|
|||
import UUID
|
||||
import qualified GitRepo as Git
|
||||
import qualified Annex
|
||||
import qualified AnnexQueue
|
||||
import Utility
|
||||
import StatFS
|
||||
import Key
|
||||
|
@ -72,7 +73,7 @@ logStatus key status = do
|
|||
unless (Git.repoIsLocalBare g) $ do
|
||||
u <- getUUID g
|
||||
logfile <- liftIO $ logChange g key u status
|
||||
Annex.queue "add" [Param "--"] logfile
|
||||
AnnexQueue.add "add" [Param "--"] logfile
|
||||
|
||||
{- Runs an action, passing it a temporary filename to download,
|
||||
- and if the action succeeds, moves the temp file into
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue