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

This commit is contained in:
Tim Scheuermann
2022-07-20 11:58:17 +03:00
committed by GitHub
parent 1f1d3785fe
commit 9ed453dcac

View File

@@ -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()