Is ktor autoreload stable/supposed to work in most...
# ktor
h
Is ktor autoreload stable/supposed to work in most cases? I'm trying it out and immediately getting problems with file locks.
My entry point.
Copy code
fun main(args: Array<String>): Unit = io.ktor.server.netty.EngineMain.main(args)

fun Application.module() {
  
}
I'm getting 'Could not read path' on one of the directories in the classpath that I'm watching when executing gradle build.