Hello @sanset
It seems like the error message is related to the local emulator for Azure Storage. The error message indicates that the function is trying to access a socket on the local machine, which is not allowed.
To resolve this issue, you can try the following steps:
- Stop the local emulator for Azure Storage if it is running.
- Check the connection string for the Azure Storage account that the function is using. Make sure that it is pointing to the correct account and that the account is accessible.
- Restart the function app and see if the issue is resolved. If the issue persists, you can try running the function app on a different port. To do this, you can add an environment variable named
AzureWebJobsStorage
to the function app settings with the valueUseDevelopmentStorage=true;DevelopmentStorageProxyUri=http://127.0.0.1:
. Apply the port number that is not being used by any other application on your machine.
I hope this helps