This is an automated email from the ASF dual-hosted git repository.

clebertsuconic 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 1e57df4cbd ARTEMIS-5294 Adjusting size to 100K on String.repeat
1e57df4cbd is described below

commit 1e57df4cbd9bef728bb54eee1edac97b4625b674
Author: Clebert Suconic <[email protected]>
AuthorDate: Wed Feb 12 11:52:02 2025 -0500

    ARTEMIS-5294 Adjusting size to 100K on String.repeat
---
 .../apache/activemq/artemis/tests/integration/client/ConsumerTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/client/ConsumerTest.java
 
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/client/ConsumerTest.java
index 2ecdcbc79d..0b9b89e4c4 100644
--- 
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/client/ConsumerTest.java
+++ 
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/client/ConsumerTest.java
@@ -488,7 +488,7 @@ public class ConsumerTest extends ActiveMQTestBase {
       ConnectionFactory factorySend = createFactory(protocolSender);
       ConnectionFactory factoryConsume = protocolConsumer == protocolSender ? 
factorySend : createFactory(protocolConsumer);
 
-      final String bufferLargeContent = " ".repeat(1000 * 1024);
+      final String bufferLargeContent = " ".repeat(100 * 1024);
 
       try (Connection connection = factorySend.createConnection()) {
          connection.start();


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact


Reply via email to