mirror of
https://github.com/go-kratos/kratos.git
synced 2025-01-10 00:29:01 +02:00
fix example
This commit is contained in:
parent
5d95b333f1
commit
92ac678e8a
@ -10,13 +10,11 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/bilibili/kratos/pkg/ecode"
|
"github.com/bilibili/kratos/pkg/ecode"
|
||||||
epb "github.com/bilibili/kratos/pkg/ecode/pb"
|
|
||||||
"github.com/bilibili/kratos/pkg/log"
|
"github.com/bilibili/kratos/pkg/log"
|
||||||
"github.com/bilibili/kratos/pkg/net/rpc/warden"
|
"github.com/bilibili/kratos/pkg/net/rpc/warden"
|
||||||
pb "github.com/bilibili/kratos/pkg/net/rpc/warden/internal/proto/testproto"
|
pb "github.com/bilibili/kratos/pkg/net/rpc/warden/internal/proto/testproto"
|
||||||
xtime "github.com/bilibili/kratos/pkg/time"
|
xtime "github.com/bilibili/kratos/pkg/time"
|
||||||
|
|
||||||
"github.com/golang/protobuf/ptypes"
|
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -26,9 +24,7 @@ type helloServer struct {
|
|||||||
|
|
||||||
func (s *helloServer) SayHello(ctx context.Context, in *pb.HelloRequest) (*pb.HelloReply, error) {
|
func (s *helloServer) SayHello(ctx context.Context, in *pb.HelloRequest) (*pb.HelloReply, error) {
|
||||||
if in.Name == "err_detail_test" {
|
if in.Name == "err_detail_test" {
|
||||||
any, _ := ptypes.MarshalAny(&pb.HelloReply{Success: true, Message: "this is test detail"})
|
err, _ := ecode.Error(ecode.AccessDenied, "AccessDenied").WithDetails(&pb.HelloReply{Success: true, Message: "this is test detail"})
|
||||||
err := epb.From(ecode.AccessDenied)
|
|
||||||
err.ErrDetail = any
|
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return &pb.HelloReply{Message: fmt.Sprintf("hello %s from %s", in.Name, s.addr)}, nil
|
return &pb.HelloReply{Message: fmt.Sprintf("hello %s from %s", in.Name, s.addr)}, nil
|
||||||
|
Loading…
Reference in New Issue
Block a user