Logging Improvements #18

Merged
stefan merged 8 commits from master into stable 2020-09-08 15:13:53 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 9e0e819fd6 - Show all commits

View File

@ -310,7 +310,7 @@ fluent-bit:
return -1, 0, 0
end
-- otherwise it's a full line, concatenate with accumulated partial lines if any
record.message = reassemble_state[reassemble_key] or "" .. record.message
record.message = reassemble_state[reassemble_key] or "" .. (record.message or "")
reassemble_state[reassemble_key] = nil
return 1, timestamp, record
end