cloudapi: Fix artefact typo

This commit is contained in:
Brian C. Lane 2025-01-31 16:21:46 -08:00 committed by Sanne Raymaekers
parent d47102716c
commit 25e8bb1202

View file

@ -276,7 +276,7 @@ func (h *apiHandlers) targetResultToUploadStatus(jobId uuid.UUID, t *target.Targ
workerServerOptions := t.Options.(*target.WorkerServerTargetResultOptions)
absPath, err := h.server.workers.JobArtifactLocation(jobId, workerServerOptions.ArtifactRelPath)
if err != nil {
return nil, fmt.Errorf("unable to find job artefact: %w", err)
return nil, fmt.Errorf("unable to find job artifact: %w", err)
}
uploadOptions = LocalUploadStatus{
ArtifactPath: absPath,