Skip to content

Commit 2b4af5b

Browse files
committed
Update documentation to match the latest code.
1 parent 14c1889 commit 2b4af5b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/content/connection-options.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ These are the options that need to be used in order to configure a connection to
8080
<td>Specifies the path to a certificate file in PKCS #12 (.pfx) format containing a bundled Certificate and Private Key used for Mutual Authentication. To create a PKCS #12 bundle from a PEM encoded Certificate and Key, use <code>openssl pkcs12 -in cert.pem -inkey key.pem -export -out bundle.pfx</code></td>
8181
</tr>
8282
<tr>
83-
<td>Certificate Password, CertificatePassword </td>
83+
<td>Certificate Password, CertificatePassword</td>
8484
<td></td>
8585
<td>Specifies the password for the certificate specified using the <code>CertificateFile</code> option. Not required if the certificate file is not password protected.</td>
8686
</tr>
@@ -113,14 +113,14 @@ Connection pooling is enabled by default. These options are used to configure it
113113
<td>Controls the maximum length of time a connection to the server can be open. Connections that are returned to the pool are destroyed if it's been more than <code>ConnectionLifeTime</code> seconds since the connection was created. The default value of zero (0) means pooled connections will never incur a ConnectionLifeTime timeout.</td>
114114
</tr>
115115
<tr>
116-
<td>Connection Reset, ConnectionReset </td>
116+
<td>Connection Reset, ConnectionReset</td>
117117
<td><code>true</code></td>
118118
<td>If <code>true</code>, the connection state is reset when it is retrieved from the pool. The default value of <code>true</code> ensures that the connection is in the same state whether it's newly created or retrieved from the pool. A value of <code>false</code> avoids making an additional server round trip when obtaining a connection, but the connection state is not reset, meaning that session variables and other session state changes from any previous use of the connection are carried over.</td>
119119
</tr>
120120
<tr>
121121
<td>Connection Idle Timeout, ConnectionIdleTimeout</td>
122122
<td>180</td>
123-
<td>The amount of time in seconds that a connection can remain idle in the pool. Any connection that is idle for longer is subject to being closed by a background task that runs every minute, unless there are only MinimumPoolSize connections left in the pool. 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>
123+
<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>
124124
</tr>
125125
<tr>
126126
<td>Maximum Pool Size, Max Pool Size, MaximumPoolsize, maxpoolsize</td>

0 commit comments

Comments
 (0)