File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -264,22 +264,22 @@ Read and Write Operations
264264
265265 * - **retryReads**
266266 - | Specifies whether the client should retry supported read operations. For more
267- information, see :manual:`</core/retryable-reads/>` in the {+mdb-server+}
267+ information, see :manual:`Retryable Reads </core/retryable-reads/>` in the {+mdb-server+}
268268 manual.
269269 |
270270 | **Data Type**: {+bool-data-type+}
271271 | **Default**: ``True``
272272 | **MongoClient Example**: ``retryReads=False``
273- | **Connection URI Example**: ``retryReads=False ``
273+ | **Connection URI Example**: ``retryReads=false ``
274274
275275 * - **retryWrites**
276276 - | Specifies whether the client should retry supported write operations. For more
277- information, see :manual:`</core/retryable-writes/>` in the {+mdb-server+}
277+ information, see :manual:`Retryable Writes </core/retryable-writes/>` in the {+mdb-server+}
278278 manual.
279279 |
280280 | **Data Type**: {+bool-data-type+}
281281 | **Default**: ``True``
282282 | **MongoClient Example**: ``retryWrites=False``
283- | **Connection URI Example**: ``retryWrites=False ``
283+ | **Connection URI Example**: ``retryWrites=false ``
284284
285285For more information about the connection options in this section, see :ref:`pymongo-databases-collections`.
Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ Retryable Reads and Writes
289289{+driver-short+} automatically retries certain read and write operations a single time
290290if they fail due to a network error or a server error.
291291
292- You can explicitly disable retryable reads or writes by setting the ``retryReads`` or
292+ You can explicitly disable retryable reads or retryable writes by setting the ``retryReads`` or
293293``retryWrites`` option to ``False`` in the ``MongoClient()`` constructor. The following
294294example disables retryable reads and writes for a client:
295295
@@ -298,9 +298,9 @@ example disables retryable reads and writes for a client:
298298 client = MongoClient("<connection string>",
299299 retryReads=False, retryWrites=False)
300300
301- To learn more about supported retryable read operations, see :manual:`</core/retryable-reads/>`
301+ To learn more about supported retryable read operations, see :manual:`Retryable Reads </core/retryable-reads/>`
302302in the {+mdb-server+} manual. To learn more about supported retryable write
303- operations, see :manual:`</core/retryable-writes/>` in the {+mdb-server+} manual.
303+ operations, see :manual:`Retryable Writes </core/retryable-writes/>` in the {+mdb-server+} manual.
304304
305305Troubleshooting
306306---------------
You can’t perform that action at this time.
0 commit comments