@cryptotaxi247 / CoPilot / commits / 5ef9b1f0

Add verify_ssl=False to InfluxDB client configuration

Taylor committed Feb 14, 2024 at 17:47 UTC 5ef9b1f06119cc204709d29050013400c89c206f
1 file changed +1
backend/app/connectors/influxdb/utils/universal.py
+1
@@ -21,6 +21,7 @@ async def verify_influxdb_credentials(attributes: Dict[str, Any]) -> Dict[str, A
21 url=attributes["connector_url"],
22 token=attributes["connector_api_key"],
23 org=await get_influxdb_organization(),
24 + verify_ssl=False,
25 )
26 try:
27 ping = await influxdb_client.ping()