memcached-binary 0.1.1 → 0.1.1.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
memcached-binary.cabal view
@@ -1,5 +1,5 @@ name: memcached-binary-version: 0.1.1+version: 0.1.1.1 synopsis: memcached client using binary protocol. description: memcached client using binary protocol. license: MIT
src/Database/Memcached/Binary/Internal.hs view
@@ -36,7 +36,7 @@ connect :: ConnectInfo -> IO Connection connect i = fmap Connection $ - createPool (putStrLn "open" >> connect' i) (\h -> putStrLn "closed" >> quit h >> hClose h) 1 + createPool (connect' i) (\h -> quit h >> hClose h) 1 (connectionIdleTime i) (numConnection i) connect' :: ConnectInfo -> IO Handle