Skip to content

Commit

Permalink
fix: ignore marshalling error
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Sukhin <[email protected]>
  • Loading branch information
vsukhin committed Jul 31, 2024
1 parent a347505 commit 644befc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/logs/repository/minio.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func (r MinioLogsRepository) readLineLogsV2(file io.Reader, ch chan events.LogRe
err = json.Unmarshal(b, &log)
if err != nil {
r.log.Errorw("error unmarshalling log line", "error", err)
ch <- events.LogResponse{Error: err}
// ch <- events.LogResponse{Error: err}
continue
}

Expand Down

0 comments on commit 644befc

Please sign in to comment.