This is an automated email from the ASF dual-hosted git repository. jbonofre pushed a commit to branch activemq-5.15.x in repository https://gitbox.apache.org/repos/asf/activemq.git
commit 3f6401a8be2cf99c89ecf82d3916482890c54a36 Author: Marcono1234 <[email protected]> AuthorDate: Tue Jan 5 00:44:08 2021 +0100 Fix unintended String concatenation --- .../src/test/java/org/apache/activemq/broker/BrokerBenchmark.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/broker/BrokerBenchmark.java b/activemq-unit-tests/src/test/java/org/apache/activemq/broker/BrokerBenchmark.java index 3e154f9..55dc0fe 100644 --- a/activemq-unit-tests/src/test/java/org/apache/activemq/broker/BrokerBenchmark.java +++ b/activemq-unit-tests/src/test/java/org/apache/activemq/broker/BrokerBenchmark.java @@ -121,7 +121,7 @@ public class BrokerBenchmark extends BrokerTestSupport { if (msg != null) { connection.send(createAck(consumerInfo, msg, counter, MessageAck.STANDARD_ACK_TYPE)); } else if (receiveCounter.get() < consumeCount) { - LOG.info("Consumer stall, waiting for message #" + receiveCounter.get() + 1); + LOG.info("Consumer stall, waiting for message #" + (receiveCounter.get() + 1)); } }
