We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
julia> start(app,8000) Morsel is listening on 8000...
^C doesn't terminate it. At this time, I have to kill the REPL to stop the server.
The text was updated successfully, but these errors were encountered:
I have the same question.
Sorry, something went wrong.
Here, It called @async process_client(.....) and in process_client it did "try, catch , rethrow" things.
@async process_client(.....)
When we type "ctrl + c", it is a error. But it hasn't been throw (immediately) up somehow ...
The code below will produce similar problem ("ctrl + c" cause the code stop, but not immediately), please try this.
function inter() try catch e rethrow() end end function async_inter() while true @async inter() end end async_inter()
Also encountering this. cc: @JeffBezanson
No branches or pull requests
^C doesn't terminate it. At this time, I have to kill the REPL to stop the server.
The text was updated successfully, but these errors were encountered: