Skip to content

Commit

Permalink
fix: Correctly order emissary combined output. Fixes #8159 (#8175)
Browse files Browse the repository at this point in the history
* fix: Correctly order emissary combined output. Fixes #8168

Signed-off-by: Alex Collins <alex_collins@intuit.com>

* fix: Correctly order emissary combined output. Fixes #8168

Signed-off-by: Alex Collins <alex_collins@intuit.com>

* fix: Correctly order emissary combined output. Fixes #8168

Signed-off-by: Alex Collins <alex_collins@intuit.com>

* fix: Correctly order emissary combined output. Fixes #8168

Signed-off-by: Alex Collins <alex_collins@intuit.com>
Signed-off-by: Saravanan Balasubramanian <sarabala1979@gmail.com>
  • Loading branch information
alexec authored and sarabala1979 committed Apr 17, 2022
1 parent 22c203f commit cdd1633
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion workflow/executor/emissary/emissary.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ func (e emissary) GetOutputStream(_ context.Context, containerName string, combi
if combinedOutput {
name = "combined"
}
return os.Open(filepath.Clean(filepath.Join(common.VarRunArgoPath, "ctr", containerName, name)))

return os.Open(filepath.Clean("/var/run/argo/ctr/" + containerName + "/" + name))
}

func (e emissary) Wait(ctx context.Context, containerNames []string) error {
Expand Down

0 comments on commit cdd1633

Please sign in to comment.