vlsi commented on code in PR #6353: URL: https://github.com/apache/jmeter/pull/6353#discussion_r1775005147
########## src/core/src/main/java/org/apache/jmeter/threads/AbstractThreadGroup.java: ########## @@ -86,6 +87,8 @@ public abstract class AbstractThreadGroup extends AbstractTestElement private final AtomicInteger numberOfThreads = new AtomicInteger(0); // Number of active threads in this group + private final AtomicLong startTime = new AtomicLong(0); Review Comment: Can we use a regular `long` here? If we need to synchronize get/set calls, then we should probably document it -- 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: dev-unsubscr...@jmeter.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org