Home > Blockchain >  Azure pipelines failing on specific deploy jobs
Azure pipelines failing on specific deploy jobs

Time:02-12

On only two of my pipeline jobs I keep getting this error:

##[error]No hosted parallelism has been purchased or granted. To request a free parallelism grant, please fill out the following form https://aka.ms/azpipelines-parallelism-request

This doesnt happen on any of the other jobs in the pipeline.

enter image description here

This only started happening on 9th of February.

I've seen in the past that public projects were stopped from using parallelizm in pipelines (which I dont even think I'm using). But my project has been using Azure Pipelines before this was implemented, and these changes were not supposed to affect existing projects.

Is there a reason this has started happening recently? I cannot re-start the jobs either, the same error occurs.

CodePudding user response:

Azure pipelines failing on specific deploy jobs

It seems that the hosted pipeline parallelism disabled (earlier working) after 8th Feb for some customers.

To resolve this issue, I recommend you need to create a technical support ticket from Azure Portal if you have Azure support plans to ask product team to resolve this in banckend.

  • Related