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.