This is an automated email from the ASF dual-hosted git repository.
fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new 72aac86 Use same wording as the docs for mongodb
72aac86 is described below
commit 72aac86581285767d7d309a2a96a43d3fc794469
Author: Felix Schumacher <[email protected]>
AuthorDate: Tue Jun 16 18:51:28 2020 +0200
Use same wording as the docs for mongodb
---
xdocs/usermanual/component_reference.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/xdocs/usermanual/component_reference.xml
b/xdocs/usermanual/component_reference.xml
index aed9759..efd47f8 100644
--- a/xdocs/usermanual/component_reference.xml
+++ b/xdocs/usermanual/component_reference.xml
@@ -4376,10 +4376,10 @@ DB db = MongoDBHolder.getDBFromSource("value of
property MongoDB Source",
<property name="Keep Trying" required="No">
If <code>true</code>, the driver will keep trying to connect to
the same server in case that the socket cannot be established.<br/>
There is maximum amount of time to keep retrying, which is 15s by
default.<br/>This can be useful to avoid some exceptions being thrown when a
server is down temporarily by blocking the operations.
- <br/>It can also be useful to smooth the transition to a new
master (so that a new master is elected within the retry time).<br/>
+ <br/>It can also be useful to smooth the transition to a new
primary node (so that a new primary node is elected within the retry time).<br/>
<note>Note that when using this flag
<ul>
- <li>for a replica set, the driver will try to connect to the
old master for that time, instead of failing over to the new one right away
</li>
+ <li>for a replica set, the driver will try to connect to the
old primary node for that time, instead of failing over to the new one right
away </li>
<li>this does not prevent exception from being thrown in
read/write operations on the socket, which must be handled by application.</li>
</ul>
Even if this flag is false, the driver already has mechanisms to
automatically recreate broken connections and retry the read operations.