object CallProduct { val callProduct = repeat(10, "i") { exec(http("callProduct on port ${i}") .post("/product/${i}") .headers(headers_0)) }}--
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.
object CallProduct { val callProduct = repeat(10, "i") {
exec {
session=>
session.set("i","${i}".toInt+1)
} exec(http("callProduct on port ${i}") .post("/product/${i}") .headers(headers_0)) }}