We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 954daba commit 27bdb32Copy full SHA for 27bdb32
test/src/com/rabbitmq/examples/MulticastMain.java
@@ -367,9 +367,11 @@ private void delay(long now)
367
System.out.print("sending rate: " +
368
(msgCount * 1000L / elapsed) +
369
" msg/s");
370
- System.out.print(", basic returns: " +
371
- (basicReturnCount * 1000L / elapsed) +
372
- " ret/s");
+ if (mandatory || immediate) {
+ System.out.print(", basic returns: " +
+ (basicReturnCount * 1000L / elapsed) +
373
+ " ret/s");
374
+ }
375
if (confirm) {
376
System.out.print(", confirms: " +
377
(confirmCount * 1000L / elapsed) +
0 commit comments