Currently JavaTest limits concurrency to 50.
interface ConcurrencyParameters {
...
/**
* The highest allowed value for the concurrency.
*/
static int MAX_CONCURRENCY = 50;
}
This value needs to be adjusted because today we have ordinary lab machines with 128 hardware threads.
interface ConcurrencyParameters {
...
/**
* The highest allowed value for the concurrency.
*/
static int MAX_CONCURRENCY = 50;
}
This value needs to be adjusted because today we have ordinary lab machines with 128 hardware threads.
- duplicates
-
CODETOOLS-7900096 JavaTest should provide a more flexible upper bound on concurrency
-
- Closed
-