Hi Chinmay,
The issue could be caused by portal caching, incorrect configuration, deployment slot mismatch, or missing files.
- Refresh the portal or try accessing it in incognito mode to rule out caching issues.
- Verify the function app settings in the Azure Portal, ensuring
FUNCTIONS_WORKER_RUNTIME
is set topython
andFUNCTIONS_EXTENSION_VERSION
is set to~4
. - If you’re deploying to a slot, switch to that slot in the portal to check if the functions are visible there.
- Use Kudu (Advanced Tools) to inspect the
site/wwwroot
folder and confirm the function files (e.g.,__init__.py
,function.json
) are present. - Review the deployment logs in the Azure Portal under Deployment Center for any errors or warnings.
- Re-deploy the function app using the command:
Ensure there are no errors in the logs or if it pls share it here, will think what to do next...func azure functionapp publish func-physician-test-001
Best regards,
Alex
P.S. If my answer help to you, please Accept my answer