Skip to content

Commit

Permalink
ci fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DanG100 committed Jul 13, 2023
1 parent 33d1199 commit 47a64c9
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 17 deletions.
2 changes: 1 addition & 1 deletion bgp/tests/proto/policyval/policy_validation.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dataplane/forwarding/fwdtable/bridge/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ go_test(
"//dataplane/forwarding/infra/fwdpacket",
"//dataplane/forwarding/protocol",
"//proto/forwarding",
"@com_github_go_logr_logr//:logr",
"@org_uber_go_mock//gomock",
],
)
10 changes: 6 additions & 4 deletions dataplane/forwarding/fwdtable/bridge/bridge_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ import (

"go.uber.org/mock/gomock"

"github.com/go-logr/logr"

"github.com/openconfig/lemming/dataplane/forwarding/fwdaction"
"github.com/openconfig/lemming/dataplane/forwarding/fwdport"
"github.com/openconfig/lemming/dataplane/forwarding/fwdport/porttestutil"
Expand Down Expand Up @@ -149,11 +151,11 @@ func (packet) Frame() []byte { return nil }
// Debug control debugging for the packet.
func (packet) Debug(bool) {}

// Logf writes a message to the packet's log.
func (packet) Logf(int, string, ...interface{}) {}
// LogMsg eturns the contents of the packet's log.
func (packet) LogMsgs() []string { return nil }

// Log returns the contents of the packet's log.
func (packet) Log() []string { return nil }
// Log returns the packet logger.
func (packet) Log() logr.Logger { return logr.New(nil) }

// Attributes returns the attributes associated with the packet.
func (packet) Attributes() fwdattribute.Set { return nil }
Expand Down
2 changes: 1 addition & 1 deletion proto/dataplane/dataplane.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/forwarding/forwarding_action.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/forwarding/forwarding_attribute.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/forwarding/forwarding_common.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/forwarding/forwarding_info.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/forwarding/forwarding_notification.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/forwarding/forwarding_operation.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/forwarding/forwarding_packetsink.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/forwarding/forwarding_port.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/forwarding/forwarding_service.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/forwarding/forwarding_table.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/sysrib/sysrib.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 47a64c9

Please sign in to comment.