From ee28a4f26eb94658252024d6a8407c09286472bf Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Wed, 11 Mar 2026 22:35:22 -0400 Subject: [PATCH] fix: set case_sensitive=False in config to ensure environment variables are correctly injected on Linode/Staging. --- app/config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/config.py b/app/config.py index 85224f6..92387c6 100644 --- a/app/config.py +++ b/app/config.py @@ -1,6 +1,5 @@ # Configuration for the Aether FastAPI application. # All settings are read directly from environment variables (injected by Docker via .env). -# Previously this file was mounted from aether_container_env/conf/aether_api_config.py. from pydantic import BaseSettings, Field from typing import Any, Dict, List @@ -103,7 +102,7 @@ class Settings(BaseSettings): } class Config: - case_sensitive = True + case_sensitive = False settings = Settings()