aboutsummaryrefslogtreecommitdiff
path: root/Assistant/Threads/Committer.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Assistant/Threads/Committer.hs')
-rw-r--r--Assistant/Threads/Committer.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Assistant/Threads/Committer.hs b/Assistant/Threads/Committer.hs
index bb9b0e47e..2ddaade2f 100644
--- a/Assistant/Threads/Committer.hs
+++ b/Assistant/Threads/Committer.hs
@@ -98,13 +98,13 @@ waitChangeTime a = waitchanges 0
case (lastcommitsize >= maxCommitSize, shouldCommit scanning now len changes, possiblyrename changes) of
(True, True, _)
| len > maxCommitSize ->
- waitchanges =<< a (changes, now)
+ a (changes, now) >>= waitchanges
| otherwise -> aftermaxcommit changes
(_, True, False) ->
- waitchanges =<< a (changes, now)
+ a (changes, now) >>= waitchanges
(_, True, True) -> do
morechanges <- getrelatedchanges changes
- waitchanges =<< a (changes ++ morechanges, now)
+ a (changes ++ morechanges, now) >>= waitchanges
_ -> do
refill changes
waitchanges lastcommitsize