Skip to content

Commit

Permalink
cloudapi: Fix artefact typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bcl committed Feb 1, 2025
1 parent 64244a3 commit 0b42382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cloudapi/v2/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,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,
Expand Down

0 comments on commit 0b42382

Please sign in to comment.