Function app getting deployed on vscode but not getting shown on azure even after long time

Sai Sravan Yarlagadda 0 Reputation points
2025-06-18T12:43:10.91+00:00

I am trying to create queue trigger and I am doing testing locally and everything works perfect (on vscode) but when I am trying to push the code to azure function, it says deployment successful on vscode but the queue never shows up in functions.

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

1 answer

Sort by: Most helpful
  1. Ranashekar Guda 2,670 Reputation points Microsoft External Staff Moderator
    2025-06-19T00:32:48.1766667+00:00

    Hello @Sai Sravan Yarlagadda,
    It seems your function app deployment from Visual Studio Code is successful, but the queue trigger isn’t showing up in the Azure portal. First, confirm you are deploying to the correct Function App and subscription, as deploying to the wrong resource can cause this issue. After deployment, check the Azure portal and allow a few moments for updates to appear. Review the deployment output and logs in VS Code for any errors or warnings.

    Make sure your queue trigger and bindings are correctly configured, and that the associated storage queue exists with the proper connection string. Also, verify the function is enabled and not disabled in the portal’s settings. Confirm the runtime version in Azure matches your local project to avoid compatibility issues. If the function still doesn’t appear, try redeploying the app. For a deeper check, use the Kudu site to ensure your function files are deployed correctly.

    Kindly refer below links:

    Develop Azure Functions by using Visual Studio Code

    Azure Queue storage trigger for Azure Functions

    https://stackoverflow.com/questions/77269742/deployed-functions-but-they-are-not-showing-up-in-azure-portal

    I hope this helps resolve your issue. Feel free to reach out if you have further concerns.

    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.