From d6df706c96e0651a0c67a1824afdcaf4772b9f65 Mon Sep 17 00:00:00 2001 From: Dominic Wong Date: Tue, 19 Oct 2021 17:42:17 +0100 Subject: [PATCH] temp fix for location service to show in app --- location/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/location/main.go b/location/main.go index 1d45637..3e3f494 100644 --- a/location/main.go +++ b/location/main.go @@ -6,7 +6,6 @@ import ( "github.com/micro/micro/v3/service" "github.com/micro/services/location/handler" pb "github.com/micro/services/location/proto" - "github.com/micro/services/location/subscriber" "github.com/micro/services/pkg/tracing" ) @@ -17,7 +16,8 @@ func main() { pb.RegisterLocationHandler(location.Server(), new(handler.Location)) - service.Subscribe(subscriber.Topic, new(subscriber.Location)) + // TODO reinstate me + //service.Subscribe(subscriber.Topic, new(subscriber.Location)) traceCloser := tracing.SetupOpentracing("location") defer traceCloser.Close()