summaryrefslogtreecommitdiff
path: root/Assistant/Threads/SanityChecker.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-10-30 14:44:18 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-10-30 14:44:18 -0400
commitbab7e83221468905b76e28bb123ebe26e146b97b (patch)
tree19b3bf6d56f936a81c09be7b552c3a8616d45e27 /Assistant/Threads/SanityChecker.hs
parentca03b7fef80cf97e89cd785ec8393a27d5328d99 (diff)
cleanup daemonStatus accessors
Diffstat (limited to 'Assistant/Threads/SanityChecker.hs')
-rw-r--r--Assistant/Threads/SanityChecker.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Assistant/Threads/SanityChecker.hs b/Assistant/Threads/SanityChecker.hs
index 46f399dab..2ffdc9f32 100644
--- a/Assistant/Threads/SanityChecker.hs
+++ b/Assistant/Threads/SanityChecker.hs
@@ -49,7 +49,7 @@ sanityCheckerThread = NamedThread "SanityChecker" $ forever $ do
{- Only run one check per day, from the time of the last check. -}
waitForNextCheck :: Assistant ()
waitForNextCheck = do
- v <- lastSanityCheck <$> daemonStatus
+ v <- lastSanityCheck <$> getDaemonStatus
now <- liftIO getPOSIXTime
liftIO $ threadDelaySeconds $ Seconds $ calcdelay now v
where