[MM-38700] Use the job ID for the export name (#20675)

Этот коммит содержится в:
Tim Scheuermann
2022-07-20 11:58:17 +03:00
коммит произвёл GitHub
родитель 1f1d3785fe
Коммит 9ed453dcac

Просмотреть файл

@@ -34,7 +34,7 @@ func MakeWorker(jobServer *jobs.JobServer, app AppIface) model.Worker {
}
outPath := *app.Config().ExportSettings.Directory
exportFilename := model.NewId() + "_export.zip"
exportFilename := job.Id + "_export.zip"
rd, wr := io.Pipe()