-
Notifications
You must be signed in to change notification settings - Fork 849
Open
Description
Please, fill the following sections to help us fix the issue
What happened:
Return 400
What you expected to happen:
Return healthy when table exists
How to reproduce it (as minimally and precisely as possible):
services.AddHealthChecks()
.AddAzureTable(sp =>
sp.GetRequiredService<TableServiceClient>(),
sp => new AzureTableServiceHealthCheckOptions
{
TableName = configuration[AzureTableStorageNameKey]
});
Source code sample:
Anything else we need to know?:
Change how the package is checking the table.
e.g.
var tableClient = _tableServiceClient.GetTableClient(_tableName);
await tableClient.GetAccessPoliciesAsync(cancellationToken: cancellationToken);
the filter being false is no longer supported.
Environment:
- .NET Core version
- Healthchecks version
- Operative system: WIN 11 Enterprise
- Others:
Metadata
Metadata
Assignees
Labels
No labels