refac: disable direct connections by default to avoid confusion

This commit is contained in:
Timothy Jaeryang Baek 2025-08-11 13:49:53 +04:00
parent 1134512b22
commit fbf5f2bb67

View file

@ -871,7 +871,7 @@ CACHE_DIR.mkdir(parents=True, exist_ok=True)
ENABLE_DIRECT_CONNECTIONS = PersistentConfig(
"ENABLE_DIRECT_CONNECTIONS",
"direct.enable",
os.environ.get("ENABLE_DIRECT_CONNECTIONS", "True").lower() == "true",
os.environ.get("ENABLE_DIRECT_CONNECTIONS", "False").lower() == "true",
)
####################################