Can Gatling config be set to accept both 200 and 304
is this right?
.exec(http("Run Magnolia Load Test")
.get("/")) // Replace "/endpoint" with your endpoint
.check(status.is(200))
//.check(status.is(304), status.is(200))
.pause(5)
.during(duration) {
feed(urlList)
.exec(
http("${PATH}")
.get("${PATH}")
.check(status.is(200))
.check(status.is(304), status.is(200))
//will pause between 10 and 30 seconds
).pause(5, 20)