From 2cae31db7f44acddae0a134fd0840787ae783b59 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Fri, 30 Jan 2026 12:20:40 -0800 Subject: [PATCH] Wrong Redis URL --- src/paperless_migration/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paperless_migration/settings.py b/src/paperless_migration/settings.py index 44308b33e..12c2de8b5 100644 --- a/src/paperless_migration/settings.py +++ b/src/paperless_migration/settings.py @@ -42,7 +42,7 @@ EXPORT_DIR = __get_path("PAPERLESS_EXPORT_DIR", BASE_DIR.parent / "export") def _parse_redis_url() -> str: """Parse Redis URL from environment with sensible defaults.""" - return os.getenv("PAPERLESS_REDIS_URL", "redis://localhost:6379") + return os.getenv("PAPERLESS_REDIS", "redis://localhost:6379") def _parse_db_settings() -> dict[str, dict[str, Any]]: