From 4a8bbc3d133e6e41346250128d4579cfae1a2f5d Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 1 Aug 2022 12:52:53 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/smartclickhouse.classes.timedatatable.ts | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 8775b43..afc6ccf 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@pushrocks/smartclickhouse', - version: '2.0.9', + version: '2.0.10', description: 'an odm for talking to clickhouse' } diff --git a/ts/smartclickhouse.classes.timedatatable.ts b/ts/smartclickhouse.classes.timedatatable.ts index b861cb7..fd78942 100644 --- a/ts/smartclickhouse.classes.timedatatable.ts +++ b/ts/smartclickhouse.classes.timedatatable.ts @@ -97,6 +97,9 @@ export class TimeDataTable { * stores a json and tries to map it to the nested syntax */ public async addData(dataArg: any) { + if (this.healingDeferred) { + return; + } // the storageJson let storageJson: { [key: string]: any } = {};