Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
milosjava committed Oct 2, 2024
1 parent f4cdbeb commit fb7e6b2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions backend/src/v2/compiler/argocompiler/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,12 @@ func (c *workflowCompiler) containerExecutorTask(name string, inputs containerEx
// and resources etc, that are different for different tasks.
func (c *workflowCompiler) addContainerExecutorTemplate(refName string) string {
// container template is parent of container implementation template
nameContainerExecutor := "system-container-executor"
nameContainerImpl := "system-container-impl"
//nameContainerExecutor := "system-container-executor"
//nameContainerImpl := "system-container-impl"

nameContainerExecutor := "system-container-executor-" + refName
nameContainerImpl := "system-container-impl-" + refName

_, ok := c.templates[nameContainerExecutor]
if ok {
return nameContainerExecutor
Expand Down

0 comments on commit fb7e6b2

Please sign in to comment.