Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
Merge ce3a7c3 into 5929fef
Browse files Browse the repository at this point in the history
  • Loading branch information
sebito91 committed Apr 10, 2020
2 parents 5929fef + ce3a7c3 commit f316b5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Update DataFrameClient to fix faulty empty tags (#770 thx @michelfripiat)
- Update DataFrameClient to properly return `dropna` values (#778 thx @jgspiro)
- Update DataFrameClient to test for pd.DataTimeIndex before blind conversion (#623 thx @testforvin)
- Update client to type-set UDP port to int (#651 thx @yifeikong)

### Removed

Expand Down
2 changes: 1 addition & 1 deletion influxdb/client.py
Expand Up @@ -107,7 +107,7 @@ def __init__(self,
self._verify_ssl = verify_ssl

self.__use_udp = use_udp
self.__udp_port = udp_port
self.__udp_port = int(udp_port)

if not session:
session = requests.Session()
Expand Down

0 comments on commit f316b5a

Please sign in to comment.