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
264
264
265
265
* - **retryReads**
266
266
- | 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+}
268
268
manual.
269
269
|
270
270
| **Data Type**: {+bool-data-type+}
271
271
| **Default**: ``True``
272
272
| **MongoClient Example**: ``retryReads=False``
273
- | **Connection URI Example**: ``retryReads=False ``
273
+ | **Connection URI Example**: ``retryReads=false ``
274
274
275
275
* - **retryWrites**
276
276
- | 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+}
278
278
manual.
279
279
|
280
280
| **Data Type**: {+bool-data-type+}
281
281
| **Default**: ``True``
282
282
| **MongoClient Example**: ``retryWrites=False``
283
- | **Connection URI Example**: ``retryWrites=False ``
283
+ | **Connection URI Example**: ``retryWrites=false ``
284
284
285
285
For 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
289
289
{+driver-short+} automatically retries certain read and write operations a single time
290
290
if they fail due to a network error or a server error.
291
291
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
293
293
``retryWrites`` option to ``False`` in the ``MongoClient()`` constructor. The following
294
294
example disables retryable reads and writes for a client:
295
295
@@ -298,9 +298,9 @@ example disables retryable reads and writes for a client:
298
298
client = MongoClient("<connection string>",
299
299
retryReads=False, retryWrites=False)
300
300
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/>`
302
302
in 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.
304
304
305
305
Troubleshooting
306
306
---------------
You can’t perform that action at this time.
0 commit comments