DeleteNamespace removes the tablets for deleted namespace from the membership state.
(ctx context.Context, in *pb.DeleteNsRequest)
| 672 | |
| 673 | // DeleteNamespace removes the tablets for deleted namespace from the membership state. |
| 674 | func (s *Server) DeleteNamespace(ctx context.Context, in *pb.DeleteNsRequest) (*pb.Status, error) { |
| 675 | err := s.Node.proposeAndWait(ctx, &pb.ZeroProposal{DeleteNs: in}) |
| 676 | return &pb.Status{}, err |
| 677 | } |
| 678 | |
| 679 | // ShouldServe returns the tablet serving the predicate passed in the request. |
| 680 | func (s *Server) ShouldServe( |
nothing calls this directly
no test coverage detected