diff options
author | Joey Hess <joey@kitenet.net> | 2012-10-14 14:47:01 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-10-14 14:50:03 -0400 |
commit | 83c8c3104583d6fea4c44751b39191b1f4af443f (patch) | |
tree | 670ee370decd2e9e4fca38f4f66077e77c92dce5 /Assistant/Threads/Pusher.hs | |
parent | ec23c75632cf1b8e4e3d5049a2c0a7623a9ae958 (diff) |
better variable name
Diffstat (limited to 'Assistant/Threads/Pusher.hs')
-rw-r--r-- | Assistant/Threads/Pusher.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Assistant/Threads/Pusher.hs b/Assistant/Threads/Pusher.hs index dee563d74..4f3a2dd09 100644 --- a/Assistant/Threads/Pusher.hs +++ b/Assistant/Threads/Pusher.hs @@ -52,7 +52,7 @@ pushThread st dstatus commitchan pushmap = thread $ runEvery (Seconds 2) $ do now <- getCurrentTime if shouldPush now commits then do - remotes <- filter pushable . knownRemotes + remotes <- filter pushable . syncRemotes <$> getDaemonStatus dstatus unless (null remotes) $ void $ alertWhile dstatus (pushAlert remotes) $ |