Commit 92a2c94 1 parent 315f3cd commit 92a2c94 Copy full SHA for 92a2c94
File tree 3 files changed +3
-7
lines changed
3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ Issues Resolved
208
208
See the `PyMongo 4.9 release notes in JIRA `_ for the list of resolved issues
209
209
in this release.
210
210
211
- .. _Is PyMongo Fork-Safe : https://www.mongodb.com/docs/languages/python/pymongo-driver/current/faq/#is-pymongo-fork-safe-
211
+ .. _Is PyMongo Fork-Safe : https://www.mongodb.com/docs/languages/python/pymongo-driver/current/troubleshooting/#forking-a-process-causes-a-deadlock
212
212
.. _PyMongo 4.9 release notes in JIRA : https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=39940
213
213
214
214
Original file line number Diff line number Diff line change @@ -232,9 +232,7 @@ async def open(self) -> None:
232
232
warnings .warn ( # type: ignore[call-overload] # noqa: B028
233
233
"AsyncMongoClient opened before fork. May not be entirely fork-safe, "
234
234
"proceed with caution. See PyMongo's documentation for details: "
235
- "https://www.mongodb.com/docs/languages/"
236
- "python/pymongo-driver/current/faq/"
237
- "#is-pymongo-fork-safe-" ,
235
+ "https://www.mongodb.com/docs/languages/python/pymongo-driver/current/troubleshooting/#forking-a-process-causes-a-deadlock" ,
238
236
** kwargs ,
239
237
)
240
238
async with self ._lock :
Original file line number Diff line number Diff line change @@ -232,9 +232,7 @@ def open(self) -> None:
232
232
warnings .warn ( # type: ignore[call-overload] # noqa: B028
233
233
"MongoClient opened before fork. May not be entirely fork-safe, "
234
234
"proceed with caution. See PyMongo's documentation for details: "
235
- "https://www.mongodb.com/docs/languages/"
236
- "python/pymongo-driver/current/faq/"
237
- "#is-pymongo-fork-safe-" ,
235
+ "https://www.mongodb.com/docs/languages/python/pymongo-driver/current/troubleshooting/#forking-a-process-causes-a-deadlock" ,
238
236
** kwargs ,
239
237
)
240
238
with self ._lock :
You can’t perform that action at this time.
0 commit comments