fix: missing sent timestamp on force-close query

This commit is contained in:
Kieran 2023-11-09 14:30:59 +00:00
parent ff2da6c5fd
commit aa31047c45
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -47,6 +47,7 @@ export class QueryTrace extends EventEmitter<QueryTraceEvents> {
}
forceEose() {
this.sent ??= unixNowMs();
this.eose = unixNowMs();
this.#wasForceClosed = true;
this.sendClose();