disable ssl verify for influx client

This commit is contained in:
Sven Holz
2022-06-14 08:47:02 +02:00
parent d144d9ec9f
commit 6bfbd869a9

View File

@@ -67,7 +67,8 @@ class MyInfluxDB():
# create influxdb client
self.client = InfluxDBClient(url=INFX_URL,
token=INFX_TOKEN,
org=INFX_ORG)
org=INFX_ORG,
verify_ssl=False)
# create influxdb write api
self.write_api = self.client.write_api(write_options=WriteOptions(batch_size=INFX_BATCH,