Skip to content

Commit

Permalink
Reduced concurrent delay from 2s to 1s
Browse files Browse the repository at this point in the history
  • Loading branch information
jdereg committed Apr 29, 2024
1 parent f6892d8 commit 9b1d07c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ public void run()
{
long start = System.currentTimeMillis();

while (System.currentTimeMillis() - start < 2000)
while (System.currentTimeMillis() - start < 1000)
{
for (int j=0; j < 100; j++)
{
Expand Down

0 comments on commit 9b1d07c

Please sign in to comment.