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 } = {};