daemon: don't track analysis file bytes written

We don't actually use this for anything
This commit is contained in:
Will Greenberg
2025-07-16 16:51:52 -07:00
committed by Cooper Quintin
parent 5db24e4b21
commit 1011c4b123
4 changed files with 8 additions and 39 deletions

View File

@@ -11,7 +11,6 @@ interface JsonManifestEntry {
start_time: string;
last_message_time: string;
qmdl_size_bytes: number;
analysis_size_bytes: number;
}
export class Manifest {
@@ -62,7 +61,6 @@ export class ManifestEntry {
constructor(json: JsonManifestEntry) {
this.name = json.name;
this.qmdl_size_bytes = json.qmdl_size_bytes;
this.analysis_size_bytes = json.analysis_size_bytes;
this.start_time = new Date(json.start_time);
if (json.last_message_time) {
this.last_message_time = new Date(json.last_message_time);