File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
## 1.38.0 [ unreleased]
2
2
3
+ ### Bug Fixes
4
+ 1 . [ #601 ] ( https://github.com/influxdata/influxdb-client-python/pull/601 ) : Use HTTResponse.headers to clear deprecation warning [ urllib3]
5
+
3
6
### Documentation
4
7
1 . [ #566 ] ( https://github.com/influxdata/influxdb-client-python/pull/566 ) : Fix Sphinx documentation build and add support ` .readthedocs.yml ` V2 configuration file
5
8
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def getheaders(self):
47
47
48
48
def getheader (self , name , default = None ):
49
49
"""Return a given response header."""
50
- return self .urllib3_response .getheader (name , default )
50
+ return self .urllib3_response .headers . get (name , default )
51
51
52
52
53
53
class RESTClientObject (object ):
You can’t perform that action at this time.
0 commit comments