Hi all!
I'm trying Tough Day 2 for performance testing and I'm not able to execute a test an exact amount of times concurrently.
This is my configuration file:
 
runmode:
  type: normal
  concurrency: 20
  waittime: 10
tests:
  - add: CreatePageTest
    properties:
      title: PageTest
      parentpath: /content/we-retail
      template: /conf/we-retail/settings/wcm/templates/experience-page
      count: 20
 
I want the tests to create 20 pages concurrently with 20 threads. But more than that are created instead (sometimes 25, 30, etc.)
I'm aware of this warning from Tough Day 2 documentation:

But is there a way to overcome this and be able to create exactly 20 pages?
Thank you!