remove retry at publish time (#236070)

fixes #236067
pull/236075/head
João Moreno 2024-12-13 16:50:04 +01:00 committed by GitHub
parent 8c3188b222
commit 7ed772b8b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -540,7 +540,7 @@ async function processArtifact(artifact, filePath) {
const stagingContainerClient = blobServiceClient.getContainerClient('staging');
await stagingContainerClient.createIfNotExists();
const releaseService = await ESRPReleaseService.create(log, e('RELEASE_TENANT_ID'), e('RELEASE_CLIENT_ID'), e('RELEASE_AUTH_CERT'), e('RELEASE_REQUEST_SIGNING_CERT'), stagingContainerClient);
await (0, retry_1.retry)(() => releaseService.createRelease(version, filePath, friendlyFileName));
await releaseService.createRelease(version, filePath, friendlyFileName);
}
const { product, os, arch, unprocessedType } = match.groups;
const isLegacy = artifact.name.includes('_legacy');

View File

@ -880,7 +880,7 @@ async function processArtifact(
stagingContainerClient
);
await retry(() => releaseService.createRelease(version, filePath, friendlyFileName));
await releaseService.createRelease(version, filePath, friendlyFileName);
}
const { product, os, arch, unprocessedType } = match.groups!;