v1.5.1 增强程序稳定性
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v6.33.2
|
||||
// - protoc-gen-go-grpc v1.6.1
|
||||
// - protoc v3.19.6
|
||||
// source: service_node_action.proto
|
||||
|
||||
package pb
|
||||
@@ -143,22 +143,22 @@ type NodeActionServiceServer interface {
|
||||
type UnimplementedNodeActionServiceServer struct{}
|
||||
|
||||
func (UnimplementedNodeActionServiceServer) CreateNodeAction(context.Context, *CreateNodeActionRequest) (*CreateNodeActionResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method CreateNodeAction not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method CreateNodeAction not implemented")
|
||||
}
|
||||
func (UnimplementedNodeActionServiceServer) DeleteNodeAction(context.Context, *DeleteNodeActionRequest) (*RPCSuccess, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method DeleteNodeAction not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method DeleteNodeAction not implemented")
|
||||
}
|
||||
func (UnimplementedNodeActionServiceServer) UpdateNodeAction(context.Context, *UpdateNodeActionRequest) (*RPCSuccess, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method UpdateNodeAction not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method UpdateNodeAction not implemented")
|
||||
}
|
||||
func (UnimplementedNodeActionServiceServer) FindAllNodeActions(context.Context, *FindAllNodeActionsRequest) (*FindAllNodeActionsResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method FindAllNodeActions not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method FindAllNodeActions not implemented")
|
||||
}
|
||||
func (UnimplementedNodeActionServiceServer) FindNodeAction(context.Context, *FindNodeActionRequest) (*FindNodeActionResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method FindNodeAction not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method FindNodeAction not implemented")
|
||||
}
|
||||
func (UnimplementedNodeActionServiceServer) UpdateNodeActionOrders(context.Context, *UpdateNodeActionOrdersRequest) (*RPCSuccess, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method UpdateNodeActionOrders not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method UpdateNodeActionOrders not implemented")
|
||||
}
|
||||
func (UnimplementedNodeActionServiceServer) testEmbeddedByValue() {}
|
||||
|
||||
@@ -170,7 +170,7 @@ type UnsafeNodeActionServiceServer interface {
|
||||
}
|
||||
|
||||
func RegisterNodeActionServiceServer(s grpc.ServiceRegistrar, srv NodeActionServiceServer) {
|
||||
// If the following call pancis, it indicates UnimplementedNodeActionServiceServer was
|
||||
// If the following call panics, it indicates UnimplementedNodeActionServiceServer was
|
||||
// embedded by pointer and is nil. This will cause panics if an
|
||||
// unimplemented method is ever invoked, so we test this at initialization
|
||||
// time to prevent it from happening at runtime later due to I/O.
|
||||
|
||||
Reference in New Issue
Block a user