[QUERY] Tables CreateIfNotExists Error Logs #28084
Labels
Client
This issue points to a problem in the data-plane of the library.
customer-reported
Issues that are reported by GitHub users external to the Azure organization.
needs-team-attention
Workflow: This issue needs attention from Azure service team or SDK team
question
The issue doesn't require a change to the product in order to be resolved. Most issues start as that
Tables
Library name and version
Azure.Data.Tables 12.5.0
Query/Question
Why does the following code, throw a 409 (conflict) if the table exists. The purpose of this call is to create a table if it dosn't exists. This is not an exception case. It leads to a ton of error messages in application insight (dependency Exceptions). It seems that it is handled by the library, so it does not throw it to the client but it sillt fills the logs. Is this fixed in a further release?
tableClient = new TableClient(new Uri("tableuri"), "mytablename", new DefaultAzureCredential()); await tableClient.CreateIfNotExistsAsync() .ConfigureAwait(false);
Environment
Azure Functions dotnet 6
The text was updated successfully, but these errors were encountered: