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

@@ -161,7 +161,7 @@
"filename": "app/config.py",
"hashed_secret": "577a4c667e4af8682ca431857214b3a920883efc",
"is_verified": false,
"line_number": 122,
"line_number": 123,
"is_secret": false
}
],
@@ -634,5 +634,5 @@
}
]
},
"generated_at": "2025-09-25T20:25:57Z"
"generated_at": "2025-09-29T15:45:16Z"
}

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):