Skip to content
Snippets Groups Projects
Commit 46f8c9b5 authored by felmer's avatar felmer
Browse files

PersistentExtendedBlockingQueueDecoratorTest.testThreadSafetiness() adding...

PersistentExtendedBlockingQueueDecoratorTest.testThreadSafetiness() adding only 1000 items to the queue instead of 10000. Should fix broken CI.

SVN: 28176
parent 6c21f066
No related branches found
No related tags found
No related merge requests found
......@@ -284,7 +284,7 @@ public class PersistentExtendedBlockingQueueDecoratorTest
}
}).start();
Random random = new Random(37);
for (int i = 0; i < 10000; i++)
for (int i = 0; i < 1000; i++)
{
try
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment