Spaces:
Runtime error
Runtime error
DJQmUKV
commited on
Commit
·
f98b802
1
Parent(s):
b6d83ca
fix: another fix attempt, what the f**k is happening
Browse files- app_multi.py +9 -9
app_multi.py
CHANGED
|
@@ -404,12 +404,12 @@ with app:
|
|
| 404 |
queue=False
|
| 405 |
)
|
| 406 |
|
| 407 |
-
app.queue(
|
| 408 |
-
|
| 409 |
-
|
| 410 |
-
|
| 411 |
-
).launch(
|
| 412 |
-
|
| 413 |
-
|
| 414 |
-
|
| 415 |
-
)
|
|
|
|
| 404 |
queue=False
|
| 405 |
)
|
| 406 |
|
| 407 |
+
app.queue(
|
| 408 |
+
concurrency_count=1,
|
| 409 |
+
max_size=20,
|
| 410 |
+
api_open=args.api
|
| 411 |
+
).launch(
|
| 412 |
+
server_name=args.bind,
|
| 413 |
+
server_port=args.port,
|
| 414 |
+
share=args.share
|
| 415 |
+
)
|