Skip to content

Commit

Permalink
Merge pull request #199 from l1b0k/fix_eip
Browse files Browse the repository at this point in the history
fix self check
  • Loading branch information
l1b0k authored May 18, 2021
2 parents 56000c2 + 459a8f9 commit 9703d79
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions daemon/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -983,6 +983,9 @@ func toResMapping(poolStats tracing.ResourcePoolStats, pods []interface{}) ([]*t
for _, pod := range pods {
p := pod.(PodResources)
for _, res := range p.Resources {
if res.Type == types.ResourceTypeEIP {
continue
}
old, ok := all[res.ID]
if !ok {
all[res.ID] = &tracing.PodMapping{
Expand Down

0 comments on commit 9703d79

Please sign in to comment.