fix(core): update

This commit is contained in:
2022-03-02 13:20:18 +01:00
parent 63dcf3ff4b
commit cbc7b5a4a7
2 changed files with 23 additions and 4 deletions

View File

@ -17,6 +17,10 @@ export class ClickhouseDb {
* starts the connection to the Clickhouse db
*/
public start() {
this.clickhouseClient = new plugins.clickhouse.ClickHouse(this.options);
this.clickhouseClient = new plugins.clickhouse.ClickHouse({
...this.options,
basicAuth: null,
format: 'json'
});
}
}