Hi all,
Recently upgraded to 3.0.3 and using pause for first time. Trying to understand what pause at scenario level is doing. Here is what i have
`
val register : ChainBuilder = feed(feeder).exec(http(testname)
.put(…)
.header(…)
.body(…)
.check(…))
and then my scenario
val scn: ScenarioBuilder = scenario(name).exec(register).pause(10)
and then my setup
setUp(sdn.inject(rampUsers(1000) during (0 seconds))…
`
what does this mean? like for every user after the put request are we waiting for 10 seconds?
If yes, why are my results not reflected with the 10 seconds? (Results show simulation completed in 13 seconds)
I would appreciate if anyone could help me explain whats happening here?
Thanks for your help.
Thanks,
Venkata