Skip to content

Commit 0aa45c0

Browse files
authored
fix: rqe_execute_request_mode env_var_converter (#400)
1 parent 1e25e81 commit 0aa45c0

File tree

1 file changed

+1
-1
lines changed
  • lib/dl_configs/dl_configs

1 file changed

+1
-1
lines changed

lib/dl_configs/dl_configs/rqe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class RQEConfig(SettingsBase):
4545
execute_request_mode: RQEExecuteRequestMode = s_attrib( # type: ignore # 2024-01-24 # TODO: Incompatible types in assignment (expression has type "Attribute[Any]", variable has type "RQEExecuteRequestMode") [assignment]
4646
"EXECUTE_REQUEST_MODE",
4747
missing=RQEExecuteRequestMode.STREAM,
48-
env_var_converter=lambda s: RQEExecuteRequestMode[s.lower()],
48+
env_var_converter=lambda s: RQEExecuteRequestMode[s.upper()],
4949
)
5050

5151
@classmethod

0 commit comments

Comments
 (0)