most lesz a jo
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Pünkösd Marcell 2020-05-29 18:35:45 +02:00
parent 79151695f8
commit 6606ec0699
1 changed files with 3 additions and 2 deletions

View File

@ -40,8 +40,9 @@ 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, ssl=False) as client:
await client.create_database(db=config.INFLUXDB_DB)
host=config.INFLUXDB_HOST, port=config.INFLUXDB_PORT, ssl=False,
database=config.INFLUXDB_DB) as client:
await client.create_database(config.INFLUXDB_DB)
await client.write(point)