We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22cd8fa commit 05148f4Copy full SHA for 05148f4
1 file changed
modules/conf_env_list_parser.py
@@ -11,6 +11,7 @@ def prepare_field_value(self, field_name: str, field: FieldInfo, value: Any, val
11
prefix = f"{field_name.upper()}__"
12
kiosks_map = {}
13
for key, val in os.environ.items():
14
+ key = key.upper()
15
if key.startswith(prefix):
16
# Example: FUSIONSOLAR_KIOSKS__0__FUSIONSOLAR_KIOSK_API_URL
17
# Split out the index and field name
0 commit comments