This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Description
- InfluxDB version: 1.7.3
- InfluxDB-python version: 5.2.1
- Python version: 2.7.12
- Operating system version: Ubuntu 16.04
Hello, since I've changed our InfluxDB to a HTTPS connection, I'm not able to write two points anymore. The first write attempt is successfully, the second fails.
I'm getting the following exception:
ConnectionError: ('Connection aborted.', BadStatusLine('\x15\x03\x01\x00\x02\x02\x16',))
Snippet of the client connection:
client = InfluxDBClient(host=influxHost, port=influxPort, username=influxUser, password=influxPass, database=sensortype, ssl=True, verify_ssl=True)
Thank you for helping me!