warp-tls 3.2.10 → 3.2.11
raw patch · 3 files changed
+6/−2 lines, 3 files
Files
- ChangeLog.md +4/−0
- Network/Wai/Handler/WarpTLS.hs +1/−1
- warp-tls.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,7 @@+## 3.2.11++* Ignoring an exception from shutdown (gracefulClose).+ ## 3.2.10 * Passing client certificate, if any, to Warp
Network/Wai/Handler/WarpTLS.hs view
@@ -361,7 +361,7 @@ backend recvN = TLS.Backend { TLS.backendFlush = return () #if MIN_VERSION_network(3,1,1)- , TLS.backendClose = gracefulClose s 5000+ , TLS.backendClose = gracefulClose s 5000 `E.catch` \(SomeException _) -> return () #else , TLS.backendClose = close s #endif
warp-tls.cabal view
@@ -1,5 +1,5 @@ Name: warp-tls-Version: 3.2.10+Version: 3.2.11 Synopsis: HTTP over TLS support for Warp via the TLS package License: MIT License-file: LICENSE