mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-02-28 22:39:27 +00:00
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:
parent
f4581deb9d
commit
c0cf01f914
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user