Skip to content

Commit e9469fa

Browse files
authored
Merge pull request #5 from astar-development/features/remove-defunct-health-check
Remove defunct Health Check message
2 parents c5416c5 + d842a9b commit e9469fa

File tree

3 files changed

+2
-22
lines changed

3 files changed

+2
-22
lines changed

src/AStar.Dev.Api.HealthChecks/AStar.Dev.Api.HealthChecks.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2222
<PackageProjectUrl>https://github.com/astar-development/astar-dev-api-health-checks</PackageProjectUrl>
2323
<PackageReadmeFile>Readme.md</PackageReadmeFile>
24-
<PackageReleaseNotes>This version cleans up the HealthCheck code without affecting the public API.</PackageReleaseNotes>
24+
<PackageReleaseNotes>Removes the defunct Health Check, leaving the 'Result' object-based version.</PackageReleaseNotes>
2525
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2626
<PackageTags>ASP.Core HealthChecks;HealthChecks</PackageTags>
2727
<RepositoryType>git</RepositoryType>
2828
<RepositoryUrl>https://github.com/astar-development/astar-dev-api-health-checks.git</RepositoryUrl>
2929
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
3030
<TargetFramework>net9.0</TargetFramework>
3131
<Title>AStar API HealthChecks</Title>
32-
<Version>0.4.0</Version>
32+
<Version>0.4.1</Version>
3333
</PropertyGroup>
3434

3535
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

src/AStar.Dev.Api.HealthChecks/AStar.Dev.Api.HealthChecks.xml

Lines changed: 0 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/AStar.Dev.Api.HealthChecks/IApiClient.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,6 @@ namespace AStar.Dev.Api.HealthChecks;
77
/// </summary>
88
public interface IApiClient
99
{
10-
/// <summary>
11-
/// The GetHealthAsync method will return the basic Health Status of the API.
12-
/// </summary>
13-
/// <param name="cancellationToken">The token to optionally use to cancel the operation</param>
14-
/// <returns>
15-
/// An instance of the <see href="HealthStatusResponse"></see> class containing the text representation of the API
16-
/// Health Status.
17-
/// </returns>
18-
public Task<HealthStatusResponse> GetHealthAsync(CancellationToken cancellationToken = default);
19-
2010
/// <summary>
2111
/// The GetHealthAsync method will return the basic Health Status of the API.
2212
/// </summary>

0 commit comments

Comments
 (0)