mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 01:12:59 +00:00
Bugfix: fix end-of-file
This commit is contained in:
parent
5b2d71f41f
commit
588ee87b83
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue