From 89f016ed9d985a86316f9b3907bbaaf558b70bfb Mon Sep 17 00:00:00 2001 From: Ryan D McGuire Date: Mon, 24 Mar 2025 16:46:45 -0400 Subject: [PATCH] update TODO --- TODO.md | 1 + pkg/srv/grpc/run.go | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/TODO.md b/TODO.md index 56d6211..8c484a2 100644 --- a/TODO.md +++ b/TODO.md @@ -1,5 +1,6 @@ # TODO +- [ ] Test and troubleshoot GRPC Gateway supprot - [ ] Finish implementing GRPC service support - [ ] Expand config test case to cover GRPC config - [ ] Expand tracing diff --git a/pkg/srv/grpc/run.go b/pkg/srv/grpc/run.go index 765aa05..75209b4 100644 --- a/pkg/srv/grpc/run.go +++ b/pkg/srv/grpc/run.go @@ -8,7 +8,6 @@ import ( semconv "go.opentelemetry.io/otel/semconv/v1.27.0" ) -// TODO: Implement func (a *appGRPCServer) runGRPCServer(spanCtx context.Context) error { _, span := a.tracer.Start(spanCtx, "appgrpc.init.start") defer span.End()