Skip to content

Commit 19265db

Browse files
committed
Fix warning for IP set type; log the actual value.
1 parent d2fd83c commit 19265db

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

app-policy/policystore/ipset.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
package policystore
1616

1717
import (
18-
"fmt"
1918
"net"
2019
"strconv"
2120
"strings"
@@ -63,7 +62,7 @@ func NewIPSet(t syncapi.IPSetUpdate_IPSetType) IPSet {
6362
case syncapi.IPSetUpdate_NET:
6463
return ipNetSet{v4: &trieNode{}, v6: &trieNode{}}
6564
}
66-
log.Warn(fmt.Sprintf("Unrecognized IPSet type %T", t))
65+
log.Warnf("Unrecognized IPSet type %v", t)
6766
return nil
6867
}
6968

felix/bpf/conntrack/timeouts_test.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
package conntrack
22

33
import (
4-
"github.com/projectcalico/calico/felix/config"
54
"reflect"
65
"testing"
6+
7+
"github.com/projectcalico/calico/felix/config"
78
)
89

910
func TestConfigNames(t *testing.T) {
@@ -12,7 +13,7 @@ func TestConfigNames(t *testing.T) {
1213
v := reflect.ValueOf(&to)
1314
v = v.Elem()
1415

15-
for key, _ := range c.BPFConntrackTimeouts {
16+
for key := range c.BPFConntrackTimeouts {
1617
field := v.FieldByName(key)
1718
if !field.IsValid() {
1819
t.Errorf("Config contains invalid BPF conntrack timeout: %s", key)

felix/docs/config-params.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

felix/docs/config-params.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)