We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15d3043 commit 0057709Copy full SHA for 0057709
ads/aqua/config/container_config.py
@@ -192,7 +192,7 @@ def from_service_config(
192
env_vars_dict = json.loads(
193
additional_configurations.get("env_vars") or "{}"
194
)
195
- env_vars = [{key: value} for key, value in env_vars_dict.items()]
+ env_vars = [{key: str(value)} for key, value in env_vars_dict.items()]
196
197
# Build container spec
198
container_item.spec = AquaContainerConfigSpec(
0 commit comments