Skip to content
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