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
Inspecting the source code in SharedQueueThreadPool
The loop of function fn run_task(rx: TaskReceiver) should break when rx.0.recv returns an error and return from the function.
fn run_task(rx: TaskReceiver)
rx.0.recv
It logs an error message and goes on looping
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Report
1. What did you do?
Inspecting the source code in SharedQueueThreadPool
2. What did you expect to see?
The loop of function
fn run_task(rx: TaskReceiver)
should break whenrx.0.recv
returns an error and return from the function.3. What did you see instead?
It logs an error message and goes on looping
The text was updated successfully, but these errors were encountered: