Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Jul 9, 2024
1 parent 10ca0a8 commit 23c3338
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/junit-functional/org/jgroups/tests/NioServerTest2.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class NioServerTest2 {
protected static final int NUM_MSGS=10000;
protected static final int MSG_SIZE=1000;
protected static final int recv_buf_size=50000, send_buf_size=10000;
protected static final int recv_buf_size=100000, send_buf_size=50000;
protected JChannel a, b;
protected MyReceiver ra, rb;

Expand All @@ -49,7 +49,7 @@ public void testMulticasting() throws Exception {
a.send(msg);
}

for(int i=0; i < 20; i++) {
for(int i=0; i < 100; i++) {
if(ra.total() >= NUM_MSGS && rb.total() >= NUM_MSGS)
break;
System.out.printf("A.good=%d | bad=%d, B.good=%d | bad=%d\n", ra.good(), ra.bad(), rb.good(), rb.bad());
Expand Down

0 comments on commit 23c3338

Please sign in to comment.