From a779cc630f18676c607f7ee25dd66fa72a92e53a Mon Sep 17 00:00:00 2001 From: Subhrajyoti Date: Tue, 20 Dec 2022 12:26:32 +0530 Subject: [PATCH 1/2] Fix a missing import --- go/core/core.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go/core/core.go b/go/core/core.go index 5a35e61a..beb7207f 100644 --- a/go/core/core.go +++ b/go/core/core.go @@ -22,6 +22,8 @@ import ( "runtime" "sort" "strings" + + "go.opentelemetry.io/otel/propagation" ) // Constants used as key string for tags. From c747a1b5a703e2d5237e2d38f1567454ca7a6e95 Mon Sep 17 00:00:00 2001 From: Subhrajyoti Date: Tue, 20 Dec 2022 12:46:29 +0530 Subject: [PATCH 2/2] Fix typo in net/http document --- go/net/http/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/net/http/README.md b/go/net/http/README.md index 2268dfd9..559597b4 100644 --- a/go/net/http/README.md +++ b/go/net/http/README.md @@ -10,7 +10,7 @@ go get -u github.com/google/sqlcommenter/go/net/http ## Usage -This is a low-level package that can be used to prepare SQLCommeneterTags out of an http request. The core package can then be used to inject these tags into a context +This is a low-level package that can be used to prepare SQLCommeneterTags out of an http request. The core package can then be used to inject these tags into a context: ```go import (