Spaces:
Sleeping
Sleeping
pookiefoof
commited on
Commit
·
711fa4c
1
Parent(s):
68ee842
Increase the max queue size to 20.
Browse files
app.py
CHANGED
@@ -186,7 +186,7 @@ def launch(port):
|
|
186 |
concurrency_limit=1)
|
187 |
|
188 |
launch_args = {"server_port": port}
|
189 |
-
demo.queue(max_size=
|
190 |
demo.launch(auth=AUTH, **launch_args)
|
191 |
|
192 |
if __name__ == "__main__":
|
|
|
186 |
concurrency_limit=1)
|
187 |
|
188 |
launch_args = {"server_port": port}
|
189 |
+
demo.queue(max_size=20)
|
190 |
demo.launch(auth=AUTH, **launch_args)
|
191 |
|
192 |
if __name__ == "__main__":
|