Small journal cleanup
Clean up a deferred function call in the journal reading logic. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com> (cherry picked from commit 1ada3e85bf89201910c28f2ff6892c00cee0f137) Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com> Upstream-commit: e700930ca521d0c004b6a3ed8bdd35a2d538aa15 Component: engine
This commit is contained in:
committed by
Kir Kolyshkin
parent
ea64a5cc52
commit
baee58e4ef
@ -330,12 +330,12 @@ func (s *journald) readLogs(logWatcher *logger.LogWatcher, config logger.ReadCon
|
||||
// here, potentially while the goroutine that uses them is still
|
||||
// running. Otherwise, close them when we return from this function.
|
||||
following := false
|
||||
defer func(pfollowing *bool) {
|
||||
if !*pfollowing {
|
||||
defer func() {
|
||||
if !following {
|
||||
close(logWatcher.Msg)
|
||||
}
|
||||
C.sd_journal_close(j)
|
||||
}(&following)
|
||||
}()
|
||||
// Remove limits on the size of data items that we'll retrieve.
|
||||
rc = C.sd_journal_set_data_threshold(j, C.size_t(0))
|
||||
if rc != 0 {
|
||||
|
||||
Reference in New Issue
Block a user