Rampup users only do 1 request?

Hi all,

I noticed when using Rampup() during () the defined users only do one request and then go to done?

Is this normal behavior?

I’m struggling with setting up a simple test that runs up to 30 users and holds it for 5 minutes but so far no luck.

`

setUp(
 rest.inject(
      rampUsers(30) during (30 seconds).max(5 minutes)
  )
 ).assertions(
  global.responseTime.max.lt(5000),
  forAll.failedRequests.percent.lte(5)
).protocols(httpConf)

`

Kind regards and thanks in advance.

The doc should help:
https://gatling.io/docs/current/general/simulation_setup/#injection

https://gatling.io/2018/10/04/gatling-3-closed-workload-model-support/

Thank you very much