Spaces:
Sleeping
Sleeping
ใ
ใ
ใ
commited on
Commit ยท
f4f7c2d
1
Parent(s): e4e2384
Add server_kwargs to increase timeout_keep_alive to 120 seconds for SSL connection stability
Browse files- CodeWeaver/ui/app.py +4 -1
CodeWeaver/ui/app.py
CHANGED
|
@@ -361,6 +361,9 @@ if __name__ == "__main__":
|
|
| 361 |
server_name="0.0.0.0",
|
| 362 |
server_port=7860,
|
| 363 |
share=False,
|
| 364 |
-
theme=gr.themes.Soft()
|
|
|
|
|
|
|
|
|
|
| 365 |
# CSS๋ Blocks ์์ฑ์์ ์ ๋ฌ๋จ
|
| 366 |
)
|
|
|
|
| 361 |
server_name="0.0.0.0",
|
| 362 |
server_port=7860,
|
| 363 |
share=False,
|
| 364 |
+
theme=gr.themes.Soft(),
|
| 365 |
+
server_kwargs={
|
| 366 |
+
"timeout_keep_alive": 120, # ์ ํด ์ฐ๊ฒฐ ์ ์ง ์๊ฐ 120์ด(2๋ถ)
|
| 367 |
+
}
|
| 368 |
# CSS๋ Blocks ์์ฑ์์ ์ ๋ฌ๋จ
|
| 369 |
)
|