Skip to content

fix: designe HealthAsync() as obsolete in interface #360

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 3 commits into from
Sep 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

### Bug Fixes
1. [#353](https://github.com/influxdata/influxdb-client-csharp/pull/353): Support for `double` types in LINQ expression [LINQ]
2. [#360](https://github.com/influxdata/influxdb-client-csharp/pull/360): Designated `HealthAsync` as obsolete in `IInfluxDBClient`

### Dependencies
Update dependencies:
Expand Down
1 change: 1 addition & 0 deletions Client/InfluxDBClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ public interface IInfluxDBClient : IDisposable
/// Get the health of an instance.
/// </summary>
/// <returns>health of an instance</returns>
[Obsolete("This method is obsolete. Call 'PingAsync()' instead.", false)]
Task<HealthCheck> HealthAsync();

/// <summary>
Expand Down