Why does auto-reload work when do ``` embeddedS...
# ktor
s
Why does auto-reload work when do
Copy code
embeddedServer(
        factory = Netty,
        port = 8080,
    ) {
        modules()
    }
But not
Copy code
embeddedServer(
        factory = Netty,
        port = 8080,
        module = Application::modules
    )
a
I've checked and the auto reload works with both configurations using Ktor 1.6.4. Could you please share the steps you take to reproduce described problem?
s
I’m using ktor 1.6.4
I was running it through the gradle run command
I was seeing the auto-reload trigger, but the change wasn’t happening