Compare commits

...

1 Commits

Author SHA1 Message Date
Andrii Chubatiuk
86554e70e1 app/vlinsert/journald: fixed binary value parsing 2025-06-19 12:55:00 +03:00

View File

@@ -282,7 +282,6 @@ func readJournaldLogEntry(streamName string, lr *insertutil.LineReader, lmp inse
return fmt.Errorf("unexpected end of stream while reading value size")
}
fb.value = append(fb.value, lr.Line...)
fb.value = append(fb.value, '\n')
}
size := binary.LittleEndian.Uint64(fb.value[:8])