Hello,
Started getting error suddenly on my azure functions ... following is details I see under logs....
"azure function cannot find function: '<my function name>', available function names: []"
how to fix this ?
Hello,
Started getting error suddenly on my azure functions ... following is details I see under logs....
"azure function cannot find function: '<my function name>', available function names: []"
how to fix this ?
@MayankPujara-5409 Thank you for the question. We will review and update at the earliest.
Hello @MayankPujara-5409 , I believe the function triggers are not available in your case. In that case, what you can do is :
• Restart your function app in the Azure portal
• Send an HTTP POST request to https://{functionappname}.azurewebsites.net/admin/host/synctriggers?code=<API_KEY>; using the master key.
• Send an HTTP POST request to https://management.azure.com/subscriptions/<SUBSCRIPTION_ID>/resourceGroups/<RESOURCE_GROUP_NAME>/providers/Microsoft.Web/sites/<FUNCTION_APP_NAME>/syncfunctiontriggers?api-version=2016-08-01. Replace the placeholders with your subscription ID, resource group name, and the name of your function app
you might want to read about trigger syncing here
Please let us if know if this the case and you are still encountering the issue.
6 people are following this question.