Use name in backend types instead of alias (#3142)

This commit is contained in:
6543
2024-01-09 15:22:59 +01:00
committed by GitHub
parent 1eacf74376
commit cd59a85230
12 changed files with 48 additions and 108 deletions

View File

@@ -258,7 +258,7 @@ var defaultLogger = pipeline.LogFunc(func(step *backendTypes.Step, rc multipart.
return err
}
logStream := NewLineWriter(step.Alias, step.UUID)
logStream := NewLineWriter(step.Name, step.UUID)
_, err = io.Copy(logStream, part)
return err
})