Regarding ktor pipelines (<https://ktor.io/advance...
# ktor
f
Regarding ktor pipelines (https://ktor.io/advanced/pipeline.html), does the model allows for
proceed
or
proceedWith
to be called twice from the same interceptor block run (e.g. to do a retry or use a fallback)? From a simple test, the observed behaviour is that the second
proceedWith
is allowed, the overall return value reflects that second
proceedWith
, however the subsequent interceptors don't run again.