Add verify_ssl=False to InfluxDB client creation (#153)
taylor_socfortress committed
Feb 14, 2024 at 16:39 UTC
df3e4ea212681d1750df0c2260c4a1ec1febcc15
1 file changed
+1
backend/app/connectors/influxdb/utils/universal.py
+1
@@ -86,6 +86,7 @@ async def create_influxdb_client(connector_name: str) -> InfluxDBClientAsync:
86
url=attributes["connector_url"],
87
token=attributes["connector_api_key"],
88
org=await get_influxdb_organization(),
89
+ verify_ssl=False,
90
)
91
except Exception as e:
92
raise HTTPException(