Skip to content

Commit

Permalink
Merge pull request #796 from douglasjacobsen/fix-env-var-groups
Browse files Browse the repository at this point in the history
Fix invalid reference when creating env-vars with workload groups
  • Loading branch information
rfbgo authored Dec 11, 2024
2 parents 196e345 + 69f8f8f commit 70b7896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ramble/ramble/language/application_language.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def _execute_environment_variable(app):
if workload_group not in app.workload_group_env_vars:
app.workload_group_env_vars[workload_group] = []

app.workload_group_vars[workload_group].append(workload_env_var.copy())
app.workload_group_env_vars[workload_group].append(workload_env_var.copy())

for wl_name in workload_group_list:
app.workloads[wl_name].add_environment_variable(workload_env_var.copy())
Expand Down

0 comments on commit 70b7896

Please sign in to comment.