Currently, you can attach multiple handlers to the...
# ktor
o
Currently, you can attach multiple handlers to the same route, and they will be executed one after another regardless if response was sent or not. Exception will cancel pipeline (second handler will not be called). And this will change, because it’s error prone and confusing in far more simpler cases than yours.
👍 1