From 9c1adad3476b7559e0b0be925864418b51c90e36 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Sat, 3 Oct 2020 00:15:03 -0500 Subject: [PATCH] bug fix: handling log analysis for sqlite --- healthcareio/healthcare-io.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/healthcareio/healthcare-io.py b/healthcareio/healthcare-io.py index f13eacd..828c39e 100644 --- a/healthcareio/healthcare-io.py +++ b/healthcareio/healthcare-io.py @@ -275,6 +275,8 @@ if __name__ == '__main__' : if info['store']['type'] == 'disk.SQLiteWriter' : info['store']['args']['table'] = SYS_ARGS['parse'].strip().lower() + _info = json.loads(json.dumps(info['store'])) + _info['args']['table']='logs' else: # # if we are working with no-sql we will put the logs in it (performance )?