example/blog: enhance ctx (#887)

pull/892/head
miya 4 years ago committed by GitHub
parent 83eba7083a
commit f81f95cbbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      examples/blog/internal/service/article.go

@ -43,7 +43,7 @@ func (s *BlogService) DeleteArticle(ctx context.Context, req *pb.DeleteArticleRe
func (s *BlogService) GetArticle(ctx context.Context, req *pb.GetArticleRequest) (*pb.GetArticleReply, error) { func (s *BlogService) GetArticle(ctx context.Context, req *pb.GetArticleRequest) (*pb.GetArticleReply, error) {
tr := otel.Tracer("api") tr := otel.Tracer("api")
_, span := tr.Start(ctx, "GetArticle") ctx, span := tr.Start(ctx, "GetArticle")
defer span.End() defer span.End()
p, err := s.article.Get(ctx, req.Id) p, err := s.article.Get(ctx, req.Id)
if err != nil { if err != nil {

Loading…
Cancel
Save