Closed
Description
While debugging with exception breakpoints I get a lot of internally caught exceptions like this:
ClassCastException: class io.ktor.server.netty.EventLoopGroupProxy cannot be cast
to class java.util.concurrent.ScheduledThreadPoolExecutor
In the following code the executor
is cast to ScheduledExecutorService
but the reflected Method
requires a ScheduledThreadPoolExecutor
.
Looks like a bug to me.