Skip to content

Commit e9ce6cd

Browse files
committed
Update InPortMatch GoString format
1 parent 0d290e0 commit e9ce6cd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/go.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@ jobs:
2929
export GOPATH=/home/runner/work
3030
export PATH=$PATH:$GOPATH/bin
3131
mkdir $GOPATH/src $GOPATH/pkg $GOPATH/bin
32-
go install honnef.co/go/tools/cmd/staticcheck@latest
32+
go install honnef.co/go/tools/cmd/staticcheck@2020.2.1
3333
NEW=$GOPATH/src/github.com/digitalocean/go-openvswitch
3434
mkdir -p $NEW
3535
cp -r ./* $NEW
3636
cd $NEW
3737
go mod download
3838
go get golang.org/x/lint/golint
39-
go get honnef.co/go/tools/cmd/staticcheck
4039
go get -d ./...
4140
echo "=========START LICENSE CHECK============"
4241
./scripts/licensecheck.sh

ovs/match.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ func (i *inPortMatch) MarshalText() ([]byte, error) {
693693

694694
// GoString implements Match.
695695
func (i *inPortMatch) GoString() string {
696-
return fmt.Sprintf("ovs.InPort(%q)", i.port)
696+
return fmt.Sprintf("ovs.InPort(%d)", i.port)
697697
}
698698

699699
// NeighborDiscoveryTarget matches packets with an IPv6 neighbor discovery target

0 commit comments

Comments
 (0)