WebJob cannot be added from portal if deployment form source control is configured

后端 未结 5 2091
感动是毒
感动是毒 2020-12-30 09:16

Today we experienced the following message in Azure Portal

WebJob cannot be added from portal if deployment form source control is configured.

5条回答
  •  失恋的感觉
    2020-12-30 10:13

    Kudu Console

    The workaround that worked for me was uploading the webjob directly via the Kudu Console.

    Open the Kudu Console by selecting "Advanced Tool" --> "Go" in Your App Service on the Azure Portal.

    Once on the Kudu portal open a "Debug Console" --> "CMD"

    Go to the directory for your webjobs: "d:\home\site\wwwroot\app_data\jobs\continuous\{job name}" (https://github.com/projectkudu/kudu/wiki/WebJobs)

    Then drag and drop the .zip file you prepared to upload your webjob (https://github.com/projectkudu/kudu/wiki/Kudu-console)

    The job will now be listed on the Azure Portal and be started.

提交回复
热议问题