Hi, I'm using HttpServer.jl to process requests. How can I reload the code I use to generate the response?
Calling: run(server, 8000) in the repl blocks. I can send ctrl+c to interrupt it, but only before the first request is handled. After that I'm unable to send it the ctrl+c signal. (I have to use 'kill' for the julia-process on the command line) I could use @async to avoid the blocking but I don't find a way to terminate the task externally (and to free the socket). Cheers, Antti
