8301200: Don't scale timeout stress with timeout factor

Reviewed-by: lkorinth
This commit is contained in:
Leonid Mesnik 2023-02-23 18:20:53 +00:00
parent 71dd7eaf7f
commit 6397cb611a

@ -211,12 +211,12 @@ public class StressOptions {
}
/**
* Obtain execution time in seconds adjusted for TIMEOUT_FACTOR.
* Obtain execution time in seconds.
*
* @return time
*/
public long getTime() {
return Utils.adjustTimeout(time);
return time;
}
/**