diff --git a/workflow/executor/emissary/emissary.go b/workflow/executor/emissary/emissary.go index 33590ffb3766..f55274a14212 100644 --- a/workflow/executor/emissary/emissary.go +++ b/workflow/executor/emissary/emissary.go @@ -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 {