acid-state 0.6.0 → 0.6.1
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- acid-state.cabal +1/−1
- src/Data/Acid/Remote.hs +2/−2
acid-state.cabal view
@@ -7,7 +7,7 @@ -- The package version. See the Haskell package versioning policy -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for -- standards guiding when and how versions should be incremented.-Version: 0.6.0+Version: 0.6.1 -- A short (one-line) description of the package. Synopsis: Add ACID guarantees to any serializable Haskell data structure.
src/Data/Acid/Remote.hs view
@@ -39,8 +39,8 @@ acidServer :: SafeCopy st => AcidState st -> PortID -> IO () acidServer acidState port = do socket <- listenOn port- forever $ do (handle, _host, _port) <- accept socket- forkIO (process acidState handle)+ forever (do (handle, _host, _port) <- accept socket+ forkIO (process acidState handle)) `finally` sClose socket data Command = RunQuery (Tagged Lazy.ByteString)