stop writing json file to disk

This commit is contained in:
Blake Blackshear 2020-11-08 16:07:27 -06:00
parent aff87d4372
commit 3941ce4ad1

View File

@ -140,18 +140,6 @@ class EventProcessor(threading.Thread):
if p.returncode != 0:
logger.error(p.stderr)
return
with open(f"{os.path.join(self.clips_dir, clip_name)}.json", 'w') as outfile:
json.dump({
'id': event_data['id'],
'label': event_data['label'],
'camera': camera,
'start_time': event_data['start_time'],
'end_time': event_data['end_time'],
'top_score': event_data['top_score'],
'false_positive': event_data['false_positive'],
'zones': list(event_data['entered_zones'])
}, outfile)
def run(self):
while True: