packages feed

mighttpd2 3.2.0 → 3.2.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

mighttpd2.cabal view
@@ -1,5 +1,5 @@ Name:                   mighttpd2-Version:                3.2.0+Version:                3.2.1 Author:                 Kazu Yamamoto <kazu@iij.ad.jp> Maintainer:             Kazu Yamamoto <kazu@iij.ad.jp> License:                BSD3
src/Server.hs view
@@ -147,7 +147,7 @@     setting = setPort            (opt_port opt) -- just in case             $ setHost            (fromString (opt_host opt))  -- just in case             $ setOnException     (if debug then printStdout else warpHandler rpt)-            $ setTimeout         (opt_connection_timeout opt)+            $ setTimeout         (opt_connection_timeout opt) -- seconds             $ setFdCacheDuration (opt_fd_cache_duration opt)             defaultSettings     serverName = BS.pack $ opt_server_name opt@@ -225,4 +225,4 @@   where     responseTimeout       | opt_proxy_timeout opt == 0 = H.managerResponseTimeout H.defaultManagerSettings-      | otherwise                  = Just (opt_proxy_timeout opt)+      | otherwise                  = Just (opt_proxy_timeout opt * 1000000) -- micro seconds