diff options
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Watch.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Watch.hs b/Command/Watch.hs index 26875b9a7..8b4e1b65c 100644 --- a/Command/Watch.hs +++ b/Command/Watch.hs @@ -359,7 +359,7 @@ commitStaged = do shouldCommit :: UTCTime -> [Change] -> Bool shouldCommit now changes | len == 0 = False - | len > 4096 = True -- avoid bloating queue too much + | len > 10000 = True -- avoid bloating queue too much | length (filter thisSecond changes) < 10 = True | otherwise = False -- batch activity where |