We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
HealthAsync()
1 parent 2428adc commit d2e58a4Copy full SHA for d2e58a4
CHANGELOG.md
@@ -5,6 +5,7 @@
5
6
### Bug Fixes
7
1. [#353](https://github.com/influxdata/influxdb-client-csharp/pull/353): Support for `double` types in LINQ expression [LINQ]
8
+2. [#360](https://github.com/influxdata/influxdb-client-csharp/pull/360): Designated `HealthAsync` as obsolete in `IInfluxDBClient`
9
10
### Dependencies
11
Update dependencies:
Client/InfluxDBClient.cs
@@ -181,6 +181,7 @@ public interface IInfluxDBClient : IDisposable
181
/// Get the health of an instance.
182
/// </summary>
183
/// <returns>health of an instance</returns>
184
+ [Obsolete("This method is obsolete. Call 'PingAsync()' instead.", false)]
185
Task<HealthCheck> HealthAsync();
186
187
/// <summary>
0 commit comments