Remove unsupported concurrency_limit parameter from Blocks.launch()
Browse files
app.py
CHANGED
|
@@ -13,9 +13,9 @@ if __name__ == "__main__":
|
|
| 13 |
launch_kwargs = {
|
| 14 |
"server_name": "0.0.0.0",
|
| 15 |
"server_port": 7860,
|
| 16 |
-
"show_api": False
|
| 17 |
-
"concurrency_limit": 10
|
| 18 |
}
|
|
|
|
| 19 |
|
| 20 |
# Enable login window if password secret is configured
|
| 21 |
if password:
|
|
|
|
| 13 |
launch_kwargs = {
|
| 14 |
"server_name": "0.0.0.0",
|
| 15 |
"server_port": 7860,
|
| 16 |
+
"show_api": False
|
|
|
|
| 17 |
}
|
| 18 |
+
|
| 19 |
|
| 20 |
# Enable login window if password secret is configured
|
| 21 |
if password:
|