Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cleanup for 3.27.0 release #802

Merged
merged 2 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion v3/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ require (
google.golang.org/grpc v1.54.0
)


retract v3.22.0 // release process error corrected in v3.22.1

retract v3.25.0 // release process error corrected in v3.25.1
2 changes: 2 additions & 0 deletions v3/integrations/nramqp/nramqp.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ const (
RabbitMQLibrary = "RabbitMQ"
)

func init() { internal.TrackUsage("integration", "messagebroker", "nramqp") }

func creatProducerSegment(exchange, key string) *newrelic.MessageProducerSegment {
s := newrelic.MessageProducerSegment{
Library: RabbitMQLibrary,
Expand Down
16 changes: 0 additions & 16 deletions v3/integrations/nrgraphqlgo/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,3 @@ require (
github.com/graphql-go/graphql v0.8.1
github.com/newrelic/go-agent/v3 v3.26.0
)

require (
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/klauspost/compress v1.16.3 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.49.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
google.golang.org/grpc v1.54.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)

replace github.com/newrelic/go-agent/v3 => ../..
1 change: 0 additions & 1 deletion v3/newrelic/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,6 @@ func (txn *Transaction) InsertDistributedTraceHeaders(hdrs http.Header) {
if txn == nil || txn.thread == nil {
return
}

txn.thread.CreateDistributedTracePayload(hdrs)
}

Expand Down
Loading