Skip to content

Commit d1955d4

Browse files
committed
Swap order of options in documentation.
It now matches the order of options in the serialized connection string.
1 parent 6467009 commit d1955d4

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
@@ -222,16 +222,16 @@ Connection pooling is enabled by default. These options are used to configure it
222222
<td>180</td>
223223
<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>
224224
</tr>
225-
<tr id="MaximumPoolSize">
226-
<td>Maximum Pool Size, Max Pool Size, MaximumPoolsize, maxpoolsize</td>
227-
<td>100</td>
228-
<td>The maximum number of connections allowed in the pool.</td>
229-
</tr>
230225
<tr id="MinimumPoolSize">
231226
<td>Minimum Pool Size, Min Pool Size, MinimumPoolSize, minpoolsize</td>
232227
<td>0</td>
233228
<td>The minimum number of connections to leave in the pool if ConnectionIdleTimeout is reached.</td>
234229
</tr>
230+
<tr id="MaximumPoolSize">
231+
<td>Maximum Pool Size, Max Pool Size, MaximumPoolsize, maxpoolsize</td>
232+
<td>100</td>
233+
<td>The maximum number of connections allowed in the pool.</td>
234+
</tr>
235235
</table>
236236

237237
## Other Options

0 commit comments

Comments
 (0)