Skip to content

Commit

Permalink
Update conntrack_linux.go
Browse files Browse the repository at this point in the history
Co-authored-by: Albin Kerouanton <[email protected]>
  • Loading branch information
adrianmoisey and akerouanton authored Jan 20, 2025
1 parent bfa83ee commit 01177bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conntrack_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (h *Handle) ConntrackDeleteFilters(table ConntrackTableType, family InetFam
var errMsgs []string
res, err := h.dumpConntrackTable(table, family)
if err != nil {
if !errors.Is(err, ErrDumpInterrupted) {
if !errors.Is(err, ErrDumpInterrupted) {
return 0, err
}
// This allows us to at least do a best effort to try to clean the
Expand Down

0 comments on commit 01177bd

Please sign in to comment.