users piling up and a math question

This is my load model:

`
setUp(scn.inject(rampUsersPerSec(1) to(5) during (1 minutes))).maxDuration(2 minutes).protocols(httpConf)

`

But during the scenario none of the users gets finished:

`

And after some time this happens (java.io.IOException: Remotely closed). Could that be that the server is restricted to i.e having more than 267 active connections?

`

forever is basically a while(true) infinite loop, so yes, if you inject a new users every second into such a loop, of course they’ll pile up.