It's difficult to know for sure what the issue is without knowing the error message. However, based off provided information, I surmise the error is being caused Refer to Azure Queue storage trigger for Azure Functions for additional details but I would verify the storage connection binding in function.json
of the deployed function is correct. In the example below, MyStorageConnectionAppSetting
will be an application setting in your function app that's configured for the storage account
{
"bindings": [
{
"name": "QueueItem",
"type": "queueTrigger",
"direction": "in",
"queueName": "messages",
"connection": "MyStorageConnectionAppSetting"
}
]
}