From eb01c3f5396a5639b51df93a7986a9504a4fb463 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Sun, 11 Sep 2016 01:40:28 +0200 Subject: [PATCH] don't include connection string in exception message --- Data/src/SessionPool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/src/SessionPool.cpp b/Data/src/SessionPool.cpp index 40b74d2a3..be87fb1c1 100644 --- a/Data/src/SessionPool.cpp +++ b/Data/src/SessionPool.cpp @@ -82,7 +82,7 @@ Session SessionPool::get() _idleSessions.push_front(pHolder); ++_nSessions; } - else throw SessionPoolExhaustedException(_connector, _connectionString); + else throw SessionPoolExhaustedException(_connector); } PooledSessionHolderPtr pHolder(_idleSessions.front());