Azure Functions Deployment Issue - Functions Not Appearing after deployment

Jakub Czaplicki 20 Reputation points
2025-06-08T19:58:22.9466667+00:00

Hello Everyone,

We're experiencing an issue with our Azure Functions deployment. After deploying our Python-based Azure Functions app, the functions are not appearing in the Azure Portal dashboard, despite successful deployment logs. The initial version of the code (a simple api returning empty data) was deployed successfully, after code changes (connecting to a db), the deployment seems to fail, and I cannot find any place that would tell me what's happening.

How can I debug this issue? Where can I see if an issue if with python deps, missing file , bad connection, missing env.var or anything else ?

Thanks,

Jakub

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

Accepted answer
  1. Praveen Kumar Gudipudi 1,875 Reputation points Microsoft External Staff Moderator
    2025-06-16T10:21:17.2533333+00:00

    Hello @Jakub Czaplicki,

    Thanks for sharing answer with us.

    you did "az functionapp deployment source config-zip ..", and then only "az functionapp config appsettings .."

    But after configuring "func azure functionapp publish $FUNCTION_APP --build-remote true --python", which seems to be be the way to deploy slightly more complex code.

    If this answer was helpful, please click "Accept the answer" and mark Yes, as this can help other community members.

    User's image

    If you have any other questions or are still experiencing issues, feel free to ask in the "comments" section, and I'd be happy to help.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Jakub Czaplicki 20 Reputation points
    2025-06-16T09:58:22.2633333+00:00

    Hi Praveen, Yes!

    So it turns out that I was doing the deployment in a wrong way.
    I did "az functionapp deployment source config-zip ..", and then only "az functionapp config appsettings .."

    What I missed was "func azure functionapp publish $FUNCTION_APP --build-remote true --python", which seems to be be the way to deploy slightly more complex code.

    Thanks for your help!

    Jakub

    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.