File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 4
4
1 . [ #353 ] ( https://github.com/influxdata/influxdb-client-csharp/pull/353 ) : Support for ` double ` types in LINQ expression [ LINQ]
5
5
1 . [ #360 ] ( https://github.com/influxdata/influxdb-client-csharp/pull/360 ) : Designated ` HealthAsync ` as obsolete in ` IInfluxDBClient `
6
6
7
+ ### Others
8
+ 1 . [ #368 ] ( https://github.com/influxdata/influxdb-client-csharp/pull/368 ) : Use builtin support for synchronous HTTP requests from ` RestSharp `
9
+
7
10
### Documentation
8
11
1 . [ #355 ] ( https://github.com/influxdata/influxdb-client-csharp/pull/355 ) : Add an example how to use ` EventHandler ` for ` WriteApi `
9
12
@@ -13,6 +16,7 @@ Update dependencies:
13
16
#### Build:
14
17
- [ #364 ] ( https://github.com/influxdata/influxdb-client-csharp/pull/364 ) : ` System.Configuration.ConfigurationManager ` to ` 6.0.1 `
15
18
- [ #365 ] ( https://github.com/influxdata/influxdb-client-csharp/pull/365 ) : ` Microsoft.Extensions.ObjectPool ` to ` 6.0.9 `
19
+ - [ #368 ] ( https://github.com/influxdata/influxdb-client-csharp/pull/368 ) : ` RestSharp ` to ` 108.0.2 `
16
20
17
21
#### Examples:
18
22
- [ #367 ] ( https://github.com/influxdata/influxdb-client-csharp/pull/367 ) : ` Radzen.Blazor ` to ` 4.0.0 `
Original file line number Diff line number Diff line change 36
36
<PackageReference Include =" Newtonsoft.Json" Version =" 13.0.1" />
37
37
<PackageReference Include =" NodaTime" Version =" 3.1.2" />
38
38
<PackageReference Include =" NodaTime.Serialization.JsonNet" Version =" 3.0.0" />
39
- <PackageReference Include =" RestSharp" Version =" 108.0.1 " />
39
+ <PackageReference Include =" RestSharp" Version =" 108.0.2 " />
40
40
</ItemGroup >
41
41
42
42
</Project >
Original file line number Diff line number Diff line change @@ -40,8 +40,7 @@ internal static RestRequest AddAdvancedResponseHandler(this RestRequest restRequ
40
40
internal static RestResponse ExecuteSync ( this RestClient client ,
41
41
RestRequest request , CancellationToken cancellationToken = default )
42
42
{
43
- // return client.Execute(request);
44
- return client . ExecuteAsync ( request , cancellationToken ) . ConfigureAwait ( false ) . GetAwaiter ( ) . GetResult ( ) ;
43
+ return client . Execute ( request , cancellationToken ) ;
45
44
}
46
45
}
47
46
}
You can’t perform that action at this time.
0 commit comments