Share via

Azure Function not displaying in the portal but its shwing success in vscode

Venkateshkumar S 0 Reputation points
2024-08-23T07:44:53.46+00:00

I am trying to create functions with vs code and pushed the code it shows success but not showing in portal. Refreshed multiple times and not showing any methods in portal.

VSCODE

Python Functions

V2

Please suggest

Azure Functions
Azure Functions

An Azure service that provides an event-driven serverless compute platform.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Achraf Ben Alaya 1,396 Reputation points MVP
    2026-04-02T21:36:42.6166667+00:00

    This usually happens when Azure can’t “see” your functions even though the deployment worked. With the Python V2 model, your functions aren’t picked up unless they’re defined correctly in a function_app.py file using the decorator style (like @app.function_name).

    Double-check that:

    • You’re actually using the V2 programming model (with azure-functions updated)
    • Your functions are inside function_app.py
    • Each function is properly decorated and registered with the app object

    If any of that is off, Azure won’t list your functions in the portaleven though the deployment says it succeeded.

    https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-python?wt.mc_id=MVP_328341

    If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.

    0 comments No comments

Your answer

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