You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The concurrency_count parameter has been removed from .queue(). In Gradio 4, this parameter was already deprecated and had no effect. In Gradio 5, this parameter has been removed altogether.
Running the code from Queuing guide results in the error below:
Exception has occurred: TypeError
EventListener._setup.<locals>.event_trigger() got an unexpected keyword argument 'concurrency_count'
File "./test_gradio.py", line 23, in <module>
greet_btn.click(fn=greet, inputs=[tag, output], outputs=[
TypeError: EventListener._setup.<locals>.event_trigger() got an unexpected keyword argument 'concurrency_count'
I've figured out what the problem is and reproduced, but I'd like to confirm that the work needed is to remove that part of the documentation about concurrency_count, right? There is no need for additional deletion instructions. I'll swap out the code use case for a working use case. @freddyaboulton
I've also noticed that concurrency_limit parameter isn't mentioned in the documentation, what do you think about adding it to the documentation? @freddyaboulton
Describe the bug
These guides related to queuing still refer to
concurrency_count
:However, as confirmed in #9463:
Running the code from Queuing guide results in the error below:
Have you searched existing issues? 🔎
Reproduction
Screenshot
No response
Logs
No response
System Info
Severity
I can work around it
The text was updated successfully, but these errors were encountered: