@@ -23,7 +23,7 @@ What Is the Difference Between "connectTimeoutMS", "socketTimeoutMS" and "maxTim
2323 * - Setting
2424 - Description
2525 * - connectTimeoutMS
26- - ``connectTimeoutMS`` is a :ref:`connection option <connection-options>` that sets the time, in milliseconds,
26+ - ``connectTimeoutMS`` is a :ref:`connection option <node- connection-options>` that sets the time, in milliseconds,
2727 for an individual connection from your connection pool to establish a TCP connection to the MongoDB server before
2828 timing out.
2929
@@ -65,7 +65,7 @@ How Can I Prevent the Driver From Hanging During Connection or From Spending Too
6565To prevent the driver from hanging during connection or to prevent the
6666driver from spending too long trying to reach unreachable replica sets,
6767you can set the ``connectTimeoutMS`` option of your
68- :ref:`connection options <connection-options>`.
68+ :ref:`connection options <node- connection-options>`.
6969Generally, you should ensure that the
7070``connectTimeoutMS`` setting is not lower than the longest network
7171latency you have to a member of the set. If one of the secondary members
@@ -220,7 +220,7 @@ How Can I Prevent a Slow Operation From Delaying Other Operations?
220220
221221A slow operation may delay your other operations that occur after it, if
222222the ``poolSize`` has not been set in the
223- :ref:`connection options <connection-options>`.
223+ :ref:`connection options <node- connection-options>`.
224224MongoDB is synchronous and uses a single execution thread per socket,
225225meaning that MongoDB will execute one single operation per socket at any
226226point in time. Any other operation sent to that socket will have to wait
0 commit comments