no ssl for you
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Pünkösd Marcell 2020-05-29 18:29:02 +02:00
parent 6953396bcb
commit 79151695f8
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ async def on_message(message: IncomingMessage):
'fields': {'probability': msg_json['probability']}
}
async with InfluxDBClient(username=config.INFLUXDB_USERNAME, password=config.INFLUXDB_PASSWORD,
host=config.INFLUXDB_HOST, port=config.INFLUXDB_PORT) as client:
host=config.INFLUXDB_HOST, port=config.INFLUXDB_PORT, ssl=False) as client:
await client.create_database(db=config.INFLUXDB_DB)
await client.write(point)