There should be no need to await.

That is because the queue handler will, in theory, only ever
process one event at a time.
This commit is contained in:
D. Berge
2023-09-30 20:35:12 +02:00
parent 8abc05f04e
commit 6eccbf215a

View File

@@ -294,7 +294,7 @@ class ReportLineChangeTime {
ALERT("ReportLineChangeTime queue full at", this.queue.length);
}
await this.processQueue();
this.processQueue();
}
}