This commit is contained in:
Goldy
2024-07-03 21:54:30 +02:00
3 changed files with 8 additions and 2 deletions
+7
View File
@@ -1,5 +1,12 @@
# Changelog
## [1.3.1](https://github.com/g0ldyy/comet/compare/v1.3.0...v1.3.1) (2024-07-03)
### Bug Fixes
* that's how you release it hehe ([ad65d1f](https://github.com/g0ldyy/comet/commit/ad65d1f99e9996f06d88b27c168d70b3b3998126))
## [1.3.0](https://github.com/g0ldyy/comet/compare/v1.2.2...v1.3.0) (2024-07-03)
-1
View File
@@ -51,7 +51,6 @@ class RealDebrid:
logger.warning(
"Real-Debrid blacklisted server's IP. No proxy found."
)
return "https://comet.fast"
else:
logger.warning(
f"Real-Debrid blacklisted server's IP. Switching to proxy {proxy} for {hash}|{index}"
+1 -1
View File
@@ -16,7 +16,7 @@ class AppSettings(BaseSettings):
FASTAPI_WORKERS: int = 2 * (os.cpu_count() or 1)
DATABASE_PATH: str = "data/comet.db"
CACHE_TTL: int = 86400
DEBRID_PROXY_URL: str = "http://127.0.0.1:1080"
DEBRID_PROXY_URL: Optional[str] = None
INDEXER_MANAGER_TYPE: str = "jackett"
INDEXER_MANAGER_URL: str = "http://127.0.0.1:9117"
INDEXER_MANAGER_API_KEY: str = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"