Commit 5ac2627 1 parent 9d5d4fa commit 5ac2627 Copy full SHA for 5ac2627
File tree 3 files changed +3
-4
lines changed
3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ PyMongo 4.9 brings a number of improvements including:
199
199
unction-as-a-service (FaaS) like AWS Lambda, Google Cloud Functions, and Microsoft Azure Functions.
200
200
On some FaaS systems, there is a ``fork() `` operation at function
201
201
startup. By delaying the connection to the first operation, we avoid a deadlock. See
202
- ` Is PyMongo Fork-Safe `_ for more information.
202
+ :ref: ` pymongo-fork-safe ` for more information.
203
203
204
204
205
205
Issues Resolved
@@ -208,7 +208,6 @@ 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/troubleshooting/#forking-a-process-causes-a-deadlock
212
211
.. _PyMongo 4.9 release notes in JIRA : https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=39940
213
212
214
213
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ async def open(self) -> None:
236
236
warnings .warn ( # type: ignore[call-overload] # noqa: B028
237
237
"AsyncMongoClient opened before fork. May not be entirely fork-safe, "
238
238
"proceed with caution. See PyMongo's documentation for details: "
239
- "https://www .mongodb.com/docs/languages/python/ pymongo-driver/current/troubleshooting/#forking-a-process-causes-a -deadlock" ,
239
+ "https://dochub .mongodb.org/core/ pymongo-fork -deadlock" ,
240
240
** kwargs ,
241
241
)
242
242
async with self ._lock :
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ def open(self) -> None:
236
236
warnings .warn ( # type: ignore[call-overload] # noqa: B028
237
237
"MongoClient opened before fork. May not be entirely fork-safe, "
238
238
"proceed with caution. See PyMongo's documentation for details: "
239
- "https://www .mongodb.com/docs/languages/python/ pymongo-driver/current/troubleshooting/#forking-a-process-causes-a -deadlock" ,
239
+ "https://dochub .mongodb.org/core/ pymongo-fork -deadlock" ,
240
240
** kwargs ,
241
241
)
242
242
with self ._lock :
You can’t perform that action at this time.
0 commit comments