Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update OC, accommodate gRPC changes. #249

Merged
merged 10 commits into from
Jan 7, 2025
Prev Previous commit
Next Next commit
Change from embbeded ptr to embedded literal gRIBI server.
  • Loading branch information
robshakir committed Jan 6, 2025
commit c36982b40a15fd6db600e24d4e65bdd040ade9b1
4 changes: 2 additions & 2 deletions rib/reconciler/remote_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func TestNewRemoteRIBWithStub(t *testing.T) {
}

type badGRIBI struct {
*spb.UnimplementedGRIBIServer
spb.UnimplementedGRIBIServer
}

func (b *badGRIBI) Get(_ *spb.GetRequest, _ spb.GRIBI_GetServer) error {
Expand All @@ -138,7 +138,7 @@ func newBadServer(t *testing.T, r *rib.RIB) (string, func()) {
}

type hangingGRIBI struct {
*spb.UnimplementedGRIBIServer
spb.UnimplementedGRIBIServer
}

func (h *hangingGRIBI) Get(_ *spb.GetRequest, _ spb.GRIBI_GetServer) error {
Expand Down
Loading