Skip to content

Commit ba33256

Browse files
committed
Remove DeferConnectionReset description. Fixes #1157
1 parent fc234be commit ba33256

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/content/connection-options.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,11 +188,6 @@ Connection pooling is enabled by default. These options are used to configure it
188188
<td>180</td>
189189
<td>The amount of time (in seconds) that a connection can remain idle in the pool. Any connection above <code>MinimumPoolSize</code> connections that is idle for longer than <code>ConnectionIdleTimeout</code> is subject to being closed by a background task. The background task runs every minute, or half of <code>ConnectionIdleTimeout</code>, whichever is more frequent. A value of zero (0) means pooled connections will never incur a ConnectionIdleTimeout, and if the pool grows to its maximum size, it will never get smaller.</td>
190190
</tr>
191-
<tr id="DeferConnectionReset">
192-
<td>Defer Connection Reset, DeferConnectionReset</td>
193-
<td><code>true</code></td>
194-
<td>If <code>true</code>, the connection state is not reset until the connection is retrieved from the pool. The experimental value of <code>false</code> resets connections in the background after they’re closed which can make opening a connection faster, and releases server resources sooner; however, there are reports of connection pool exhaustion when using this value.</td>
195-
</tr>
196191
<tr id="MaximumPoolSize">
197192
<td>Maximum Pool Size, Max Pool Size, MaximumPoolsize, maxpoolsize</td>
198193
<td>100</td>
@@ -305,6 +300,11 @@ These are the other options that MySqlConnector supports. They are set to sensib
305300
a <code>MySqlException</code> will be thrown if a <code>DateTime</code> command parameter has a <code>Kind</code> of <code>Local</code> or <code>Utc</code>,
306301
respectively.</td>
307302
</tr>
303+
<tr id="DeferConnectionReset">
304+
<td>Defer Connection Reset, DeferConnectionReset</td>
305+
<td></td>
306+
<td>This option was obsoleted in MySqlConnector 2.0.</td>
307+
</tr>
308308
<tr id="GuidFormat">
309309
<td>GUID Format, GuidFormat</td>
310310
<td>Default</td>

0 commit comments

Comments
 (0)