I've been trying to use ktor's auto-reload with em...
# ktor
t
I've been trying to use ktor's auto-reload with embeddedServer, and it seems like everything should be working.
Copy code
INFO  ktor.application - Application auto-reloaded in 0.008 seconds.
the above prints and everything in the console, but the actually responses aren't changing. I'm using coretto 17
b
Did you recompile the project after making changes?
I usually run ktor server in one process and then continuous gradle build in another. Haven't encountered any issues so far with temurin jdk 17
Also tried with coretto 11
t
Yeah I had two terminals open one running
./gradlew run
and the other
./gradlew -t build -x test -i
terminal logs all seem to show it's working, but it isn't reflected in the responses
b
Weird. Smells like a bug with recent versions maybe? Have you tried downgrading?
Also instead of build, run assemble.