Skip to content

Commit

Permalink
One fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bgprudhomme committed Oct 18, 2024
1 parent d14fe7c commit d8e5718
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -280,11 +280,10 @@ public void testJoinWhenMemberClosedInBetween() throws InterruptedException {
HazelcastInstance i4 = Hazelcast.newHazelcastInstance(config);

final IMap<Integer, Integer> map = i4.getMap("a");
int numThreads = 40;
final int loop = 5000;

Thread[] threads = new Thread[numThreads];
for (int i = 0; i < numThreads; i++) {
Thread[] threads = new Thread[count];
for (int i = 0; i < count; i++) {
threads[i] = new Thread(() -> {
Random random = new Random();
for (int j = 0; j < loop; j++) {
Expand Down

0 comments on commit d8e5718

Please sign in to comment.