diff --git a/Keter/App.hs b/Keter/App.hs
--- a/Keter/App.hs
+++ b/Keter/App.hs
@@ -345,7 +345,7 @@
                 icount <- newIORef 0
                 return $ do
                     res <- atomicModifyIORef icount $ \count ->
-                        (count + 1, count >= maxCount)
+                        (count + 1, count < maxCount)
                     when res delay
                     return res
 
diff --git a/keter.cabal b/keter.cabal
--- a/keter.cabal
+++ b/keter.cabal
@@ -1,5 +1,5 @@
 Name:                keter
-Version:             1.0.1
+Version:             1.0.1.1
 Synopsis:            Web application deployment manager, focusing on Haskell web frameworks
 Description:
     Handles deployment of web apps, providing a reverse proxy to achieve zero downtime deployments. For more information, please see the README on Github: <https://github.com/snoyberg/keter#readme>
