Skip to content

Commit 91e42e7

Browse files
authored
Fix wrong health check API call (#80)
* Fix wrong health check API call * Update package & license Signed-off-by: Victor Chang <[email protected]>
1 parent 7282a97 commit 91e42e7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/dependency_decisions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- :who: mocsharp
55
:why: Apache-2.0 (https://github.com/aws/aws-sdk-net/raw/master/License.txt)
66
:versions:
7-
- 3.7.13.5
7+
- 3.7.13.8
88
:when: 2022-08-29 18:11:12.923214877 Z
99
- - :approve
1010
- AWSSDK.S3

src/Plugins/MinIO/HealthCheckBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Monai.Deploy.Storage.MinIO
2323
{
2424
public class HealthCheckBuilder : HealthCheckRegistrationBase
2525
{
26-
public override IHealthChecksBuilder ConfigureAdminHealthCheck(IHealthChecksBuilder builder, HealthStatus? failureStatus = null, IEnumerable<string>? tags = null, TimeSpan? timeout = null) =>
26+
public override IHealthChecksBuilder ConfigureHealthCheck(IHealthChecksBuilder builder, HealthStatus? failureStatus = null, IEnumerable<string>? tags = null, TimeSpan? timeout = null) =>
2727
builder.Add(new HealthCheckRegistration(
2828
ConfigurationKeys.StorageServiceName,
2929
serviceProvider =>
@@ -36,7 +36,7 @@ public override IHealthChecksBuilder ConfigureAdminHealthCheck(IHealthChecksBuil
3636
tags,
3737
timeout));
3838

39-
public override IHealthChecksBuilder ConfigureHealthCheck(IHealthChecksBuilder builder, HealthStatus? failureStatus = null, IEnumerable<string>? tags = null, TimeSpan? timeout = null) =>
39+
public override IHealthChecksBuilder ConfigureAdminHealthCheck(IHealthChecksBuilder builder, HealthStatus? failureStatus = null, IEnumerable<string>? tags = null, TimeSpan? timeout = null) =>
4040
builder.Add(new HealthCheckRegistration(
4141
$"{ConfigurationKeys.StorageServiceName}-admin",
4242
serviceProvider =>

third-party-licenses.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ SOFTWARE.
4444

4545

4646
<details>
47-
<summary>AWSSDK.Core 3.7.13.5</summary>
47+
<summary>AWSSDK.Core 3.7.13.8</summary>
4848

4949
## AWSSDK.Core
5050

51-
- Version: 3.7.13.5
51+
- Version: 3.7.13.8
5252
- Authors: Amazon Web Services
5353
- Owners: Amazon Web Services
5454
- Project URL: https://github.com/aws/aws-sdk-net/
55-
- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.Core/3.7.13.5)
55+
- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.Core/3.7.13.8)
5656
- License: [Apache-2.0](https://github.com/aws/aws-sdk-net/raw/master/License.txt)
5757

5858

0 commit comments

Comments
 (0)