Creating a function app for isolated process.
No job functions found. Try making your job classes and methods public. If you're using binding extensions (e.g. Azure Storage, ServiceBus, Timers, etc.) make sure you've called the registration method for the extension(s) in your startup code (e.g. builder.AddAzureStorage(), builder.AddServiceBus(), builder.AddTimers(), etc.).
Not sure why, did I miss something here.
Cheers,
Code are attached.
@GilGeraldGonong-3333 Thank you for reaching out to Microsoft Q&A. Sorry to hear that you are facing this problem.
In reference to our docs:
https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide?tabs=browser&pivots=development-environment-vs
and samples:
https://github.com/Azure/azure-functions-dotnet-worker/tree/main/samples/FunctionApp
, didn't find any specific issue. However, noticed that you use WindowsAzure.Storage package reference which is deprecated and would like to know if you can test it with Azure.Storage.Blobs instead.
Do you face this issue intermittently or occur all the time? We have open GitHub issue
#2168
and if upgrading Storage SDK didn't help, would recommend opening up a support request with our support team. They can investigate the backend logs with the best tools to assist you better here. If you don't have a support plan, let me know so that I can create one-time free technical support for you.
Thanks
@MuthuKumaranMurugaachari-MSFT
I've found out that the project was build with a dotnet framework runtime. Once I created a new isolated (dotnet-isolated) project and use the same code and references it started working.
One thing that I found out though when deployed to Azure, is that I can't do a Test/Run in the portal. But it can be triggered by Logic App. Do not know if this is a behavior of a non-isolated function app
@GilGeraldGonong-3333 Thank you for sharing the answer with us. Yes correct. Editing .NET isolated Function Apps is not supported in the Azure portal and please refer
https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-function-app-portal#language-support-details
. We recommend using local development environment for testing purposes.