From 8132604443fc507a82869afe23807628ad51920e Mon Sep 17 00:00:00 2001 From: Victor Denisov Date: Tue, 3 May 2016 23:43:55 -0700 Subject: [PATCH] Add warning about experimental TLS support --- Database/MongoDB/Transport/Tls.hs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Database/MongoDB/Transport/Tls.hs b/Database/MongoDB/Transport/Tls.hs index 0e0b4ec..2fd3c73 100644 --- a/Database/MongoDB/Transport/Tls.hs +++ b/Database/MongoDB/Transport/Tls.hs @@ -3,7 +3,7 @@ {-| Module : MongoDB TLS -Description : TLS transport to mongodb +Description : TLS transport for mongodb Copyright : (c) Yuras Shumovich, 2016 License : Apache 2.0 Maintainer : Victor Denisov denisovenator@gmail.com @@ -11,7 +11,9 @@ Stability : experimental Portability : POSIX This module is for connecting to TLS enabled mongodb servers. -Be aware that this module is highly experimental and is barely tested. +ATTENTION!!! Be aware that this module is highly experimental and is +barely tested. The current implementation doesn't verify server's identity. +It only allows you to connect to a mongodb server using TLS protocol. -} module Database.MongoDB.Transport.Tls (connect)