hardcode FEATURE_SOCKET_ENABLED to False (#2952)

Co-authored-by: Kenneth Kehl <@kkehl@flexion.us>
This commit is contained in:
Kenneth Kehl
2025-09-29 08:55:07 -07:00
committed by GitHub
parent cfe89f61bc
commit 1c51e78abe
2 changed files with 4 additions and 3 deletions

View File

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