8301200: Don't scale timeout stress with timeout factor

Reviewed-by: lkorinth
(cherry picked from commit 6397cb611a)
This commit is contained in:
Leonid Mesnik
2023-02-23 18:20:53 +00:00
committed by Vitaly Provodin
parent c89619366f
commit b58027e9bc

View File

@@ -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;
}
/**