Changed config path names for WEB_LOADER_TIMEOUT and WEB_LOADER_RETRY_COUNT.

This commit is contained in:
Vincenzo 2025-11-24 21:39:20 +01:00
parent 9116a76e44
commit e3bb0dbfac
No known key found for this signature in database
GPG key ID: 4EA301B13E762710

View file

@ -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")),
)