--
You received this message because you are subscribed to the Google Groups "Gatling User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gatling+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To be honest i think it would be better to split up the 1.5 and the 2 version Documentation, to have them separated. Maby i am the only one who likely mix the both accidentely and run on the wrong path.In consequence i am checking the source, but the splitting up would be a time saver ;-)
val scn1 =
during (6000) {
scenario("Setup ")
.repeat(200)(
exec(
http("Get http call")
.get("https://hello.com/list")
.header("Authorization", "${auth}")
))
setUp(
scn1.inject(
atOnceUsers(1)
)
)
}