mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 10:41:14 +00:00
Merge pull request #3648 from weaveworks/handle-conntrack-error
fix: handle errors reported by the conntrack package
This commit is contained in:
@@ -147,6 +147,11 @@ func (c *conntrackWalker) run() {
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
if f.Err != nil {
|
||||
log.Errorf("conntrack event error: %v", f.Err)
|
||||
stop()
|
||||
return
|
||||
}
|
||||
if c.relevant(f) {
|
||||
c.handleFlow(f)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user