Skip to content

Commit

Permalink
Fix fv build
Browse files Browse the repository at this point in the history
  • Loading branch information
caseydavenport committed Feb 5, 2025
1 parent 17ae3bc commit e38e09e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions felix/fv/flowlogs/goldmane_mock.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

"google.golang.org/grpc"

"github.com/projectcalico/calico/goldmane/pkg/collector"
"github.com/projectcalico/calico/goldmane/pkg/server"
"github.com/projectcalico/calico/goldmane/proto"
)

Expand Down Expand Up @@ -69,7 +69,7 @@ func (g *GoldmaneMock) Run() {
g.once.Do(func() {
g.grpcServer = grpc.NewServer()
g.store = newFlowStore()
col := collector.NewFlowCollector(g.store)
col := server.NewFlowCollector(g.store)
col.RegisterWith(g.grpcServer)

l, err := net.Listen("unix", g.sockAddr)
Expand Down

0 comments on commit e38e09e

Please sign in to comment.