This is an automated email from the ASF dual-hosted git repository.
brusdev pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new 3ea18a8ea7 ARTEMIS-3376 fixed descriptions of option --no-anycast and
option --no-multicast
3ea18a8ea7 is described below
commit 3ea18a8ea7e4c13c791cf71400673518d6ce781b
Author: Erwin Dondorp <[email protected]>
AuthorDate: Tue May 24 22:58:13 2022 +0200
ARTEMIS-3376 fixed descriptions of option --no-anycast and option
--no-multicast
---
.../apache/activemq/artemis/cli/commands/address/AddressAbstract.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/address/AddressAbstract.java
b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/address/AddressAbstract.java
index 7b352627cc..a09ee120ed 100644
---
a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/address/AddressAbstract.java
+++
b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/address/AddressAbstract.java
@@ -28,13 +28,13 @@ public abstract class AddressAbstract extends
AbstractAction {
@Option(name = "--anycast", description = "It will determine this address
as anycast")
private Boolean anycast;
- @Option(name = "--no-anycast", description = "It will determine this
address as anycast")
+ @Option(name = "--no-anycast", description = "It will not determine this
address as anycast")
private Boolean noAnycast;
@Option(name = "--multicast", description = "It will determine this address
as multicast")
private Boolean multicast;
- @Option(name = "--no-multicast", description = "It will determine this
address as multicast")
+ @Option(name = "--no-multicast", description = "It will not determine this
address as multicast")
private Boolean noMulticast;