From 25e8bb1202d268fa3f8fa907d810bdf6397ec218 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Fri, 31 Jan 2025 16:21:46 -0800 Subject: [PATCH] cloudapi: Fix artefact typo --- internal/cloudapi/v2/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cloudapi/v2/handler.go b/internal/cloudapi/v2/handler.go index f7ab8c149..ed8212ab8 100644 --- a/internal/cloudapi/v2/handler.go +++ b/internal/cloudapi/v2/handler.go @@ -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,