Hi @Matthew Jensen Greetings! Thank you for posting this question on this forum.
Your Azure Function Queue trigger has the connection property set to queue_storage
. What this means is the Function app looks a connection string assigned to the property queue_storage
under the Application settings. Since you are running this locally, it will look for a connection setting under local.settings.json file.
Since there is no value associated with queue_storage
under the file, you are encountering this issue. Please change the trigger of the function app as follows and give it a try
@app.queue_trigger(arg_name="msg", queue_name="inputqueue", connection="queue_storage___queueServiceUri")
Make sure that your storage end point is assigned to the property queue_storage___queueServiceUri
in local.settings.json
Hope this helps! Please let us know if you run into any issues or need further assistance.
Resolution
The solution had an old version of the Microsoft.Azure.Functions.ExtensionBundle. Updating this resolved the issue.
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[4.0.0, 5.0.0)"
},
If the response helped, please do click Accept Answer and Yes for the answer provided. Doing so would help other community members with similar issue identify the solution. I highly appreciate your contribution to the community.