We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5929fef commit aad8349Copy full SHA for aad8349
CHANGELOG.md
@@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
30
- Update DataFrameClient to fix faulty empty tags (#770 thx @michelfripiat)
31
- Update DataFrameClient to properly return `dropna` values (#778 thx @jgspiro)
32
- Update DataFrameClient to test for pd.DataTimeIndex before blind conversion (#623 thx @testforvin)
33
+- Update client to type-set UDP port to int (#651 thx @yifeikong)
34
35
### Removed
36
influxdb/client.py
@@ -107,7 +107,7 @@ def __init__(self,
107
self._verify_ssl = verify_ssl
108
109
self.__use_udp = use_udp
110
- self.__udp_port = udp_port
+ self.__udp_port = int(udp_port)
111
112
if not session:
113
session = requests.Session()
0 commit comments