diff --git a/lib/upload-lib.js b/lib/upload-lib.js index e2dd3b32d..631e8fe39 100644 --- a/lib/upload-lib.js +++ b/lib/upload-lib.js @@ -93,7 +93,7 @@ async function uploadPayload(payload) { } else { // If the upload fails with 5xx then we assume it is a temporary problem - // with turbo-scan and not an error that the user has caused or can fix. + // and not an error that the user has caused or can fix. // We avoid marking the job as failed to avoid breaking CI workflows. core.error('Upload failed (' + requestID + '): (' + statusCode + ') ' + await res.readBody()); return; diff --git a/src/upload-lib.ts b/src/upload-lib.ts index bcb6056dd..2e8139991 100644 --- a/src/upload-lib.ts +++ b/src/upload-lib.ts @@ -94,7 +94,7 @@ async function uploadPayload(payload) { } else { // If the upload fails with 5xx then we assume it is a temporary problem - // with turbo-scan and not an error that the user has caused or can fix. + // and not an error that the user has caused or can fix. // We avoid marking the job as failed to avoid breaking CI workflows. core.error('Upload failed (' + requestID + '): (' + statusCode + ') ' + await res.readBody()); return;