in azure function app trigger functions are not creating

Anshuman Srivastava 10 Reputation points
2024-09-04T09:28:15.7333333+00:00

i am deploying my python code on azure function app but it is not creating a timmer trigger
my python code consists of frequently_asked_question.py and function_app.py files but it is not creating any funtion trigger on azure function
in logs it is showing deployment is successfull, https trigger syncing (trying 6 attempts) and at last no https trigger found showing
whereas i am creating timer trigger through code but timer trigger is also not creating in azure function app

anyone please help me out

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,092 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Abdullah Shahid 15 Reputation points
    2024-09-04T09:32:19.7733333+00:00

    It sounds like the issue may be related to the configuration of your function.json file or the structure of your code for Azure Functions. Ensure that you have properly set up the timerTrigger binding in the function.json file associated with your function_app.py file. Also, verify that you have defined the timer trigger function correctly with the appropriate parameters in your Python code.

    If the deployment logs show no trigger, it might be an issue with how Azure Functions is detecting your triggers. Double-check that your function.json is in the right location (inside a folder with the same name as your Python function) and that your Python environment matches the required versions for Azure Functions.

    Finally, ensure that the necessary extensions for timer triggers are installed on your Azure Function App. You may need to install or update the Microsoft.Azure.WebJobs.Extensions.Timer package.

    If you have done all these steps, try re-deploying the function.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.