From 6bfbd869a90cac0a86deb491e6cfeb00e3e9bf81 Mon Sep 17 00:00:00 2001 From: Sven Holz Date: Tue, 14 Jun 2022 08:47:02 +0200 Subject: [PATCH] disable ssl verify for influx client --- Docker_Build/latency_monitor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Docker_Build/latency_monitor.py b/Docker_Build/latency_monitor.py index a0be2f0..2c6dd08 100644 --- a/Docker_Build/latency_monitor.py +++ b/Docker_Build/latency_monitor.py @@ -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,