Skip to content

Commit 0057709

Browse files
Updating value type
1 parent 15d3043 commit 0057709

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ads/aqua/config/container_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def from_service_config(
192192
env_vars_dict = json.loads(
193193
additional_configurations.get("env_vars") or "{}"
194194
)
195-
env_vars = [{key: value} for key, value in env_vars_dict.items()]
195+
env_vars = [{key: str(value)} for key, value in env_vars_dict.items()]
196196

197197
# Build container spec
198198
container_item.spec = AquaContainerConfigSpec(

0 commit comments

Comments
 (0)