mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 04:45:19 +00:00
Changed config path names for WEB_LOADER_TIMEOUT and WEB_LOADER_RETRY_COUNT.
This commit is contained in:
parent
9116a76e44
commit
e3bb0dbfac
1 changed files with 2 additions and 2 deletions
|
|
@ -3041,14 +3041,14 @@ ENABLE_WEB_LOADER_SSL_VERIFICATION = PersistentConfig(
|
|||
|
||||
WEB_LOADER_TIMEOUT = PersistentConfig(
|
||||
"WEB_LOADER_TIMEOUT",
|
||||
"rag.web.loader.web_loader_timeout",
|
||||
"rag.web.loader.timeout",
|
||||
int(os.getenv("WEB_LOADER_TIMEOUT", "10000")),
|
||||
)
|
||||
|
||||
|
||||
WEB_LOADER_RETRY_COUNT = PersistentConfig(
|
||||
"WEB_LOADER_RETRY_COUNT",
|
||||
"rag.web.loader.web_loader_retry_count",
|
||||
"rag.web.loader.retry_count",
|
||||
int(os.getenv("WEB_LOADER_RETRY_COUNT", "3")),
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue