From dc257f506666fc8d0b46ff0774b4575ece7bccee Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Wed, 29 Jan 2020 22:43:40 +0000 Subject: [PATCH] update to fix tracer --- service.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/service.go b/service.go index 2d1f9631..de5697f7 100644 --- a/service.go +++ b/service.go @@ -15,6 +15,7 @@ import ( "github.com/micro/go-micro/debug/profile/pprof" "github.com/micro/go-micro/debug/service/handler" "github.com/micro/go-micro/debug/stats" + "github.com/micro/go-micro/debug/trace" "github.com/micro/go-micro/plugin" "github.com/micro/go-micro/server" "github.com/micro/go-micro/util/log" @@ -35,12 +36,12 @@ func newService(opts ...Option) Service { // wrap client to inject From-Service header on any calls options.Client = wrapper.FromService(serviceName, options.Client) - options.Client = wrapper.TraceCall(serviceName, options.Server.Options().Tracer, options.Client) + options.Client = wrapper.TraceCall(serviceName, trace.DefaultTracer, options.Client) // wrap the server to provide handler stats options.Server.Init( server.WrapHandler(wrapper.HandlerStats(stats.DefaultStats)), - server.WrapHandler(wrapper.TraceHandler(options.Server.Options().Tracer)), + server.WrapHandler(wrapper.TraceHandler(trace.DefaultTracer)), ) return &service{