vlsi commented on code in PR #6353:
URL: https://github.com/apache/jmeter/pull/6353#discussion_r1774867753
##########
src/core/src/main/kotlin/org/apache/jmeter/threads/openmodel/OpenModelThreadGroup.kt:
##########
@@ -204,7 +204,7 @@ public class OpenModelThreadGroup :
val seed = randomSeed
val rnd = if (seed == 0L) Random() else Random(seed)
val gen = ThreadScheduleProcessGenerator(rnd, parsedSchedule)
- val testStartTime = JMeterContextService.getTestStartTime()
+ val testStartTime = System.currentTimeMillis()
Review Comment:
It sounds like a good plan.
`ConstantThroughputTimer` has "shared" mode which means it somehow operates
across the thread groups, so I am not sure which "start" timestamp it should
use then.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]