Write \n end of line character

we actually forgot this, wow....
This commit is contained in:
Starbeamrainbowlabs 2022-07-04 17:05:05 +01:00
parent 920cc3feaf
commit 234e2b7978
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -17,7 +17,7 @@ class RecordsWriter {
async write(sample) {
const str = JSON.stringify(Object.fromEntries(sample));
await write_safe(this.#gzip, str);
await write_safe(this.#gzip, str+"\n");
}
async close() {