Skip to content

Commit a2e5da4

Browse files
committed
Merge 0.69.10 into 1.0.
2 parents 0c11df0 + cb421c5 commit a2e5da4

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

docs/content/overview/version-history.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ weight: 30
3737
* Allow rows larger than 1 MiB in `MySqlBulkCopy`: [#834](https://github.com/mysql-net/MySqlConnector/issues/834).
3838
* Reduce memory allocations when hashing passwords (during login).
3939

40+
### 0.69.10
41+
42+
* Ignore `ObjectDisposedException` thrown in `TryResetConnectionAsync`: [#897](https://github.com/mysql-net/MySqlConnector/pull/897).
43+
* Thanks to [laurent-jeancler-realist](https://github.com/laurent-jeancler-realist) for contributions to this release.
44+
4045
### 0.69.9
4146

4247
* Return `null` from `MySqlDataReader.GetSchemaTable` when there is no result set: [#877](https://github.com/mysql-net/MySqlConnector/issues/877).

src/MySqlConnector/Core/ServerSession.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,10 @@ public async Task<bool> TryResetConnectionAsync(ConnectionSettings cs, IOBehavio
549549
{
550550
Log.Debug(ex, "Session{0} ignoring IOException in TryResetConnectionAsync", m_logArguments);
551551
}
552+
catch (ObjectDisposedException ex)
553+
{
554+
Log.Debug(ex, "Session{0} ignoring ObjectDisposedException in TryResetConnectionAsync", m_logArguments);
555+
}
552556
catch (SocketException ex)
553557
{
554558
Log.Debug(ex, "Session{0} ignoring SocketException in TryResetConnectionAsync", m_logArguments);

0 commit comments

Comments
 (0)