hardcode FEATURE_SOCKET_ENABLED to False

This commit is contained in:
Kenneth Kehl
2025-09-24 15:03:34 -07:00
parent 7668c6fc3c
commit 5a6c74edb3
3 changed files with 7 additions and 5 deletions

View File

@@ -90,7 +90,9 @@ class Config(object):
],
}
FEATURE_SOCKET_ENABLED = getenv("FEATURE_SOCKET_ENABLED", "true") == "true"
# TODO FIX!!!
# FEATURE_SOCKET_ENABLED = getenv("FEATURE_SOCKET_ENABLED", "true") == "true"
FEATURE_SOCKET_ENABLED = False
def _s3_credentials_from_env(bucket_prefix):