ARTEMIS-4178 Fix some minor typos in broker connections docs

Fix a few small typos in the broker connections docs
This commit is contained in:
Timothy Bish 2023-02-22 17:59:01 -05:00 committed by Robbie Gemmell
parent 8bdffe872c
commit a7973c1dc3
1 changed files with 8 additions and 8 deletions

View File

@ -36,7 +36,7 @@ To define an AMQP broker connection, add an `<amqp-connection>` element within t
*Notice:* If auto-start is disabled on the broker connection, the start of the broker connection will only happen after the management method `startBrokerConnection(connectionName)` is called on the ServerController. *Notice:* If auto-start is disabled on the broker connection, the start of the broker connection will only happen after the management method `startBrokerConnection(connectionName)` is called on the ServerController.
*Important*: The target endpoint needs permission for all operations that configured. Therefore, If a security manager is being used, ensure to perform the configured operations with a user with sufficient permissions. *Important*: The target endpoint needs permission for all operations that are configured. Therefore, If a security manager is being used, ensure that you perform the configured operations with a user with sufficient permissions.
<div style="page-break-after: always"></div> <div style="page-break-after: always"></div>
@ -58,9 +58,9 @@ The following types of operations are supported on an AMQP server connection:
It is possible to determine how reconnection will happen on a broker connection. It is possible to determine how reconnection will happen on a broker connection.
These are the attributes are available on amqp-connection XML element: These are the attributes that are available on the amqp-connection XML element:
- reconnect-attempts: default as -1 (infinite). How many attempts will be done after a failed connection - reconnect-attempts: default is -1 (infinite). How many attempts will be done after a failed connection
- retry-interval: default as 5000, in milliseconds, the wait between each retry in connections. - retry-interval: default is 5000, in milliseconds, the wait between each retry of a connection.
It is also possible to specify alternate hosts on a broker connection by appending a comma separated list after a # at the end of the URI. It is also possible to specify alternate hosts on a broker connection by appending a comma separated list after a # at the end of the URI.
The broker connection would keep trying on the alternate list until one of the targets is available to connect. Example: The broker connection would keep trying on the alternate list until one of the targets is available to connect. Example:
@ -93,7 +93,7 @@ The following events are sent through mirroring:
* Queue and address creation. * Queue and address creation.
* Queue and address deletion. * Queue and address deletion.
By default every operation is sent asynchronously without blocking any clients. However if you set sync="true" on the mirror configuration, the clients will always wait a mirror on every blocking operation. By default every operation is sent asynchronously without blocking any clients. However if you set sync="true" on the mirror configuration, the clients will always wait for the mirror on every blocking operation.
### Mirror configuration ### Mirror configuration
@ -122,7 +122,7 @@ The following optional arguments can be utilized:
**Note:** **Note:**
- Address exclusion will always take precedence over address inclusion. - Address exclusion will always take precedence over address inclusion.
- Address matching on mirror elements is prefix-based and does not support wild-card matching. - Address matching on mirror elements is prefix-based and does not support wild-card matching.
* `sync`: By default is false. If set it to true any client blocking operation will be held until the mirror as confirmed receiving the operation. * `sync`: By default is false. If set it to true any client blocking operation will be held until the mirror has confirmed receiving the operation.
* Notice that a disconnected node would hold all operations from the client. If you set sync=true you must reconnect a mirror before performing any operations. * Notice that a disconnected node would hold all operations from the client. If you set sync=true you must reconnect a mirror before performing any operations.
An example of a mirror configuration is shown below: An example of a mirror configuration is shown below: