You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/check/QueueCheck.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -37,10 +37,10 @@ public class QueueCheck extends CheckAbstract {
37
37
@Option(names = "--up", description = "Check that the queue exists and is not paused. This check is executed by default if there are no other checks.")
38
38
privatebooleanup;
39
39
40
-
@Option(names = "--browse", description = "Number of the messages to browse or -1 to check that the queue is browsable.")
40
+
@Option(names = "--browse", description = "Number of the messages to browse or -1 to browse at most 1 message only if it is immediately available (succeeding also if no messages are available).")
41
41
privateIntegerbrowse;
42
42
43
-
@Option(names = "--consume", description = "Number of the messages to consume or -1 to check that the queue is consumable.")
43
+
@Option(names = "--consume", description = "Number of the messages to consume or -1 to consume at most 1 message only if it is immediately available (succeeding also if no messages are available).")
44
44
privateIntegerconsume;
45
45
46
46
@Option(names = "--produce", description = "Number of the messages to produce.")
0 commit comments