Open MarGraz opened 1 year ago
I found this conversation on stackoverflow that seems interesting.
@MarGraz Thanks for information will check and inform to you
The container already exists, check if it is present in storage account with using Azure Storage Explorer check container exists. If the container exists, you can rename the comtainer with storage explorer and update the connection string used by the Azure Function. The connection string should include the name of the container, so changing the name of the container should result in a new connection string and update the connection string in the Azure Function's configuration.
@vijaykumar911 the problem happen if the container already exists. In this case the desired behaviour is: "do nothing", instead it returns 409 error.
Still a problem... Is it that hard to fix?
Still having the issue
I'm using .net 6 and Azure Function v. 4, and I get the error: "The specified container already exists", status 409.
Those are the dependencies in my project:
The exception seems to be called by:
it seems to happen in my implementation when I use:
I see this error in Azure Application Insights:
Do you know if it is available a fix?
Thank you
Originally posted by @MarGraz in https://github.com/Azure/Azure-Functions/issues/2166#issuecomment-1536138042