-
Hello, I am wondering what happen to spawn_blocking when max_blocking_threads is reached. Current documentation is vague about this:
My understanding from the code is that it returns quickly without doing anything. Am I right ? Is that the behavior one would expect ? Should an issue be opened to discuss this further, at least to improve the documentation ? Thanks in advance for your comments here. |
Beta Was this translation helpful? Give feedback.
Answered by
Darksonn
Jun 8, 2021
Replies: 1 comment
-
The task is put in a queue, and it will start running once one of the blocking tasks have finished, making up space in the pool. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ririsoft
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The task is put in a queue, and it will start running once one of the blocking tasks have finished, making up space in the pool.