Merge pull request #43839 from thaJeztah/journald_fix_break

logger/journald: fix SA4011: ineffective break statement
This commit is contained in:
Sebastiaan van Stijn 2022-07-20 18:46:11 +02:00 committed by GitHub
commit 7624f8aeb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -227,6 +227,7 @@ func (s *journald) followJournal(logWatcher *logger.LogWatcher, j *C.sd_journal,
waitTimeout := C.uint64_t(250000) // 0.25s
LOOP:
for {
status := C.sd_journal_wait(j, waitTimeout)
if status < 0 {
@ -235,7 +236,7 @@ func (s *journald) followJournal(logWatcher *logger.LogWatcher, j *C.sd_journal,
}
select {
case <-logWatcher.WatchConsumerGone():
break // won't be able to write anything anymore
break LOOP // won't be able to write anything anymore
case <-s.closed:
// container is gone, drain journal
default: