NO-JIRA Speeding up ReceiverNoWaitTest

This test is using 1000 repetitions, each repetition sending 100 messages, which is not really needed on this case.
This commit is contained in:
Clebert Suconic 2024-04-17 10:51:58 -04:00
parent f4581deb9d
commit c0cf01f914

View File

@ -52,7 +52,7 @@ public class ReceiveNoWaitTest extends JMSTestBase {
public void testReceiveNoWait() throws Exception {
assertNotNull(queue);
for (int i = 0; i < 1000; i++) {
for (int i = 0; i < 10; i++) {
Connection connection = cf.createConnection();
Session session = connection.createSession(false, Session.CLIENT_ACKNOWLEDGE);