We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 29116a1 + 2aa1d70 commit 5b625ceCopy full SHA for 5b625ce
src/MySqlConnector/Core/ConnectionPool.cs
@@ -28,7 +28,7 @@ public async ValueTask<ServerSession> GetSessionAsync(MySqlConnection connection
28
// on the lock in RecoverLeakedSessions in high-concurrency situations
29
if (IsEmpty && unchecked(((uint) Environment.TickCount) - m_lastRecoveryTime) >= 1000u)
30
{
31
- Log.Debug("Pool{0} is empty; trying to recover any leaked sessions", m_logArguments);
+ Log.Debug("Pool{0} is empty; scanning for any leaked sessions", m_logArguments);
32
await RecoverLeakedSessionsAsync(ioBehavior).ConfigureAwait(false);
33
}
34
0 commit comments