Skip to content

Commit

Permalink
Fix issue in which the setting of function task envrionment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Jan 9, 2024
1 parent b768953 commit 4f56fbf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/engine/src/core/tasks/executors/Function.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,10 @@ def _setup_container(self) -> ContainerDetails:
)
]

# # Convert defined workflow inputs into the function containers env vars with
# # the open workflow engine input prefix
# container_details.env = container_details.env + env + input_to_k8s_env_vars(
# Convert defined workflow inputs into the function containers env vars with
# the open workflow engine input prefix
container_details.env = container_details.env + env
# + input_to_k8s_env_vars(
# self.task.input,
# self.ctx.pipeline.work_dir,
# env=self.ctx.env,
Expand Down

0 comments on commit 4f56fbf

Please sign in to comment.