Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/api/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ There are a number of query parameters that can be used in the connection string
| `connectionName` | Any string | None | Connection name |
| `maxDiscoverAttempts` | Number | `10` | Number of attempts to discover the cluster. |
| `discoveryInterval` | Number | `100` | Cluster discovery polling interval in milliseconds. |
| `gossipTimeout` | Number | `5` | Gossip timeout in seconds, when the gossip call times out, it will be retried. |
| `gossipTimeout` | Number | `3000` | Gossip timeout in milliseconds, when the gossip call times out, it will be retried. |
| `nodePreference` | `leader`, `follower`, `random`, `readOnlyReplica` | `leader` | Preferred node role. When creating a client for write operations, always use `leader`. |
| `tlsVerifyCert` | `true`, `false` | `true` | In secure mode, set to `true` when using an untrusted connection to the node if you don't have the CA file available. Don't use in production. |
| `tlsCaFile` | String, file path | None | Path to the CA file when connecting to a secure cluster with a certificate that's not signed by a trusted CA. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* <ul>
* <li>maxDiscoverAttempts: 3</li>
* <li>discoveryInterval: 500</li>
* <li>gossipTimeout: 3</li>
* <li>gossipTimeout: 3000</li>
* <li>nodePreference: leader</li>
* <li>tls: true</li>
* <li>tlsVerifyCert: true</li>
Expand Down
Loading