Hello,
I have a question about object Check io.gatling.core.check.
In function checkRec in case of first check failure checkRec is called with the first check failure.
Now when second checks fail the failure will not be propagated to next check.
I am new to scala so if i read this code incorrectly sorry in advance.
`
case f: Failure =>
failure match {
case None =>
checkRec(session, tail, update, Some(f))
case _ => checkRec(session, tail, update, failure)
}
`
Is there any reason to perform other checks in checks chain after the failure, if you do not propagate next checks failures?
Shouldn’t the first failure stopped all other checks?