File tree 2 files changed +2
-1
lines changed
Filter options
2 files changed +2
-1
lines changed
Original file line number Diff line number Diff line change 6
6
### Bug Fixes
7
7
1 . [ #526 ] ( https://github.com/influxdata/influxdb-client-python/pull/526 ) : Creating client instance from static configuration
8
8
1 . [ #531 ] ( https://github.com/influxdata/influxdb-client-python/pull/531 ) : HTTP request return type for Management API [ async/await]
9
+ 1 . [ #534 ] ( https://github.com/influxdata/influxdb-client-python/pull/534 ) : Use ` HTTResponse.headers ` to clear deprecation warning [ urllib3]
9
10
10
11
### CI
11
12
1 . [ #523 ] ( https://github.com/influxdata/influxdb-client-python/pull/523 ) : Add Python 3.11 to CI builds
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ def __init__(self, resp):
43
43
44
44
def getheaders (self ):
45
45
"""Return a dictionary of the response headers."""
46
- return self .urllib3_response .getheaders ()
46
+ return self .urllib3_response .headers
47
47
48
48
def getheader (self , name , default = None ):
49
49
"""Return a given response header."""
You can’t perform that action at this time.
0 commit comments