What happens in ktor if I call neither `proceed()`...
# ktor
m
What happens in ktor if I call neither
proceed()
not
finish()
in a pipeline interceptor?
1
c
It will proceed automatically. This is done to avoid accidentally missing proceed invocation
m
great, simplifies code! thanks 🙂