Skip to content

Commit

Permalink
add ConfigureAwait(false)
Browse files Browse the repository at this point in the history
Related to: #208
  • Loading branch information
sikutisa committed Sep 23, 2024
1 parent 537cebc commit 2f4ae05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private async Task<TableClient> GetTableClientAsync()
{
TableClient tableClient = _tableServiceClient.GetTableClient(_storageAccountSettings.TableStorage.TableName);

await tableClient.CreateIfNotExistsAsync();
await tableClient.CreateIfNotExistsAsync().ConfigureAwait(false);

return tableClient;
}
Expand Down

0 comments on commit 2f4ae05

Please sign in to comment.