Bugfix: fix end-of-file

This commit is contained in:
Starbeamrainbowlabs 2022-07-01 19:34:26 +01:00
parent 5b2d71f41f
commit 588ee87b83
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -21,8 +21,8 @@ class RecordsWriter {
} }
async close() { async close() {
await this.#gzip.close(); await end_safe(this.#gzip);
await this.#stream_out.close(); await end_safe(this.#stream_out);
} }
} }