Skip to content

Commit

Permalink
Merge branch 'master' into refine_pd_ctl_test
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot[bot] authored Feb 5, 2024
2 parents e1c5dc0 + 37be34e commit 07eac54
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
4 changes: 3 additions & 1 deletion pkg/mcs/metastorage/server/grpc_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (s *Service) Watch(req *meta_storagepb.WatchRequest, server meta_storagepb.
if err := s.checkServing(); err != nil {
return err
}
ctx, cancel := context.WithCancel(s.ctx)
ctx, cancel := context.WithCancel(server.Context())
defer cancel()
options := []clientv3.OpOption{}
key := string(req.GetKey())
Expand All @@ -106,6 +106,8 @@ func (s *Service) Watch(req *meta_storagepb.WatchRequest, server meta_storagepb.
select {
case <-ctx.Done():
return nil
case <-s.ctx.Done():
return nil
case res := <-watchChan:
if res.Err() != nil {
var resp meta_storagepb.WatchResponse
Expand Down
4 changes: 3 additions & 1 deletion server/grpc_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -2810,7 +2810,7 @@ func (s *GrpcServer) WatchGlobalConfig(req *pdpb.WatchGlobalConfigRequest, serve
return err
}
}
ctx, cancel := context.WithCancel(s.Context())
ctx, cancel := context.WithCancel(server.Context())
defer cancel()
configPath := req.GetConfigPath()
if configPath == "" {
Expand All @@ -2826,6 +2826,8 @@ func (s *GrpcServer) WatchGlobalConfig(req *pdpb.WatchGlobalConfigRequest, serve
select {
case <-ctx.Done():
return nil
case <-s.Context().Done():
return nil
case res := <-watchChan:
if res.Err() != nil {
var resp pdpb.WatchGlobalConfigResponse
Expand Down
12 changes: 10 additions & 2 deletions tests/integrations/client/global_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
package client_test

import (
"context"
"path"
"strconv"
"testing"
Expand All @@ -37,7 +38,8 @@ import (
const globalConfigPath = "/global/config/"

type testReceiver struct {
re *require.Assertions
re *require.Assertions
ctx context.Context
grpc.ServerStream
}

Expand All @@ -49,6 +51,10 @@ func (s testReceiver) Send(m *pdpb.WatchGlobalConfigResponse) error {
return nil
}

func (s testReceiver) Context() context.Context {
return s.ctx
}

type globalConfigTestSuite struct {
suite.Suite
server *server.GrpcServer
Expand Down Expand Up @@ -199,7 +205,9 @@ func (suite *globalConfigTestSuite) TestWatch() {
re.NoError(err)
}
}()
server := testReceiver{re: suite.Require()}
ctx, cancel := context.WithCancel(suite.server.Context())
defer cancel()
server := testReceiver{re: suite.Require(), ctx: ctx}
go suite.server.WatchGlobalConfig(&pdpb.WatchGlobalConfigRequest{
ConfigPath: globalConfigPath,
Revision: 0,
Expand Down

0 comments on commit 07eac54

Please sign in to comment.