ktorio / ktor

Framework for quickly creating connected applications in Kotlin with minimal effort
https://ktor.io
Apache License 2.0
12.86k stars 1.04k forks source link

KTOR-7449 Fix for uninitialized request #4318

Closed bjhham closed 2 weeks ago

bjhham commented 2 weeks ago

Subsystem Server, Routing

Motivation KTOR-7449 UninitializedPropertyAccessException for request property when using MonitoringEvent(RoutingCallStarted)

Solution Use lazy delegate over lateinit var. The previous approach seemed a bit crazy to me.