Skip to content

Commit f912215

Browse files
subrata-msCopilot
andauthored
Update mssql_python/pybind/connection/connection_pool.cpp
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent b733335 commit f912215

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

mssql_python/pybind/connection/connection_pool.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ std::shared_ptr<Connection> ConnectionPool::acquire(const std::wstring& connStr,
3232
auto idle_time =
3333
std::chrono::duration_cast<std::chrono::seconds>(now - conn->lastUsed())
3434
.count();
35-
LOG("ConnectionPool::acquire: checking conn idle_time=%lld vs timeout=%d",
36-
(long long)idle_time, _idle_timeout_secs);
3735
if (idle_time > _idle_timeout_secs) {
3836
to_disconnect.push_back(conn);
3937
return true;

0 commit comments

Comments
 (0)