azure-functions

Azure Functions App is Read Only after publishing

烂漫一生 提交于 2020-12-12 11:18:28
问题 I have several Azure Functions Apps (c#, javascript and python) and after some time they were all randomly set to Read Only mode. The strange thing is that only one of these 3 function apps were updated before this happened. I know that this is not necessarily a problem, but I want to be able to make edits from the portal. I can't open App Service Editor I can't set the app to Read/Write from Function App Settings -> Function app edit mode I also tried using "func azure functionapp publish

Azure Functions App is Read Only after publishing

扶醉桌前 提交于 2020-12-12 11:17:07
问题 I have several Azure Functions Apps (c#, javascript and python) and after some time they were all randomly set to Read Only mode. The strange thing is that only one of these 3 function apps were updated before this happened. I know that this is not necessarily a problem, but I want to be able to make edits from the portal. I can't open App Service Editor I can't set the app to Read/Write from Function App Settings -> Function app edit mode I also tried using "func azure functionapp publish

v2 Azure Function with Service Bus trigger not firing

走远了吗. 提交于 2020-12-10 15:56:30
问题 I am using Azure Functions V2 with a Service Bus trigger using 1.0.23 of the C# Functions SDK. I'm using the following approach to get secrets from KeyVault and use them within the settings of the triggers: How to map Azure Functions secrets from Key Vault automatically The function, especially when it has done nothing for a while, doesn't fire when there are messages on the subscription. If I then go to the portal and execute manually (yes, that particular execution is fired with a null

How to make sure a queue message has been successfully processed in Azure Functions?

爷,独闯天下 提交于 2020-12-07 05:14:13
问题 I have a C# Azure Functions (on the App Service plan) app built that uses HTTP Triggers and Queue Triggers. The application works by installing a script on a client's machine that pulls various files from a client database using SQL queries moving that output to a temporary Azure Blob Storage. After each file is completed an HTTP trigger is called that creates a queue message for the Queue Trigger to pick up the message and move the files from the temporary blob storage to a permanent spot in

How to make sure a queue message has been successfully processed in Azure Functions?

删除回忆录丶 提交于 2020-12-07 05:10:41
问题 I have a C# Azure Functions (on the App Service plan) app built that uses HTTP Triggers and Queue Triggers. The application works by installing a script on a client's machine that pulls various files from a client database using SQL queries moving that output to a temporary Azure Blob Storage. After each file is completed an HTTP trigger is called that creates a queue message for the Queue Trigger to pick up the message and move the files from the temporary blob storage to a permanent spot in

How to make sure a queue message has been successfully processed in Azure Functions?

北战南征 提交于 2020-12-07 05:08:48
问题 I have a C# Azure Functions (on the App Service plan) app built that uses HTTP Triggers and Queue Triggers. The application works by installing a script on a client's machine that pulls various files from a client database using SQL queries moving that output to a temporary Azure Blob Storage. After each file is completed an HTTP trigger is called that creates a queue message for the Queue Trigger to pick up the message and move the files from the temporary blob storage to a permanent spot in

How to make a continuous delivery of a python function app deployed in Azure?

不打扰是莪最后的温柔 提交于 2020-12-03 13:57:52
问题 For the first time I deployed a Python function app to Azure using a deployment pipeline: https://docs.microsoft.com/bs-latn-ba/azure/azure-functions/functions-how-to-azure-devops The package is deployed to Azure using Kudu Zip deploy. My http triggered function runs wonderfully locally (on Windows), but I have a 500 internal errors on Azure because it does not find the module requests . Exception: ModuleNotFoundError: No module named 'requests' imports of __init__.py: import logging,

How to make a continuous delivery of a python function app deployed in Azure?

Deadly 提交于 2020-12-03 13:55:20
问题 For the first time I deployed a Python function app to Azure using a deployment pipeline: https://docs.microsoft.com/bs-latn-ba/azure/azure-functions/functions-how-to-azure-devops The package is deployed to Azure using Kudu Zip deploy. My http triggered function runs wonderfully locally (on Windows), but I have a 500 internal errors on Azure because it does not find the module requests . Exception: ModuleNotFoundError: No module named 'requests' imports of __init__.py: import logging,

How to make a continuous delivery of a python function app deployed in Azure?

佐手、 提交于 2020-12-03 13:53:00
问题 For the first time I deployed a Python function app to Azure using a deployment pipeline: https://docs.microsoft.com/bs-latn-ba/azure/azure-functions/functions-how-to-azure-devops The package is deployed to Azure using Kudu Zip deploy. My http triggered function runs wonderfully locally (on Windows), but I have a 500 internal errors on Azure because it does not find the module requests . Exception: ModuleNotFoundError: No module named 'requests' imports of __init__.py: import logging,

How to make a continuous delivery of a python function app deployed in Azure?

心已入冬 提交于 2020-12-03 13:50:58
问题 For the first time I deployed a Python function app to Azure using a deployment pipeline: https://docs.microsoft.com/bs-latn-ba/azure/azure-functions/functions-how-to-azure-devops The package is deployed to Azure using Kudu Zip deploy. My http triggered function runs wonderfully locally (on Windows), but I have a 500 internal errors on Azure because it does not find the module requests . Exception: ModuleNotFoundError: No module named 'requests' imports of __init__.py: import logging,