<@U096EGZ6U> on the topic of pipeline ordering we ...
# ktor
m
@cy on the topic of pipeline ordering we were discussing earlier, here's another similar problem. I want to add information on the authenticated principal into MDC via `CallLogging`'s MDC support. However, Authentication happens after
Features
, and
CallLogging
is before
Monitoring
. So, no dice. In this case it seems reasonable to simply move
CallLogging
later, as it's natural to want to log stuff (or MDC stuff) that other features set in the
call
, but in general I think there may be a more fundamental problem with assuming that one phase and feature ordering is going to work in all cases