Skip to content

Commit

Permalink
Merge pull request #339 from topfreegames/fix_spans
Browse files Browse the repository at this point in the history
Fix span context
  • Loading branch information
rsafonseca authored Sep 7, 2023
2 parents de646f2 + 5117cb5 commit 9be9a31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/remote.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func (r *RemoteService) Call(ctx context.Context, req *protos.Request) (*protos.
if err == nil {
result := make(chan *protos.Response, 1)
go func() {
result <- processRemoteMessage(ctx, req, r)
result <- processRemoteMessage(c, req, r)
}()

reqTimeout := pcontext.GetFromPropagateCtx(ctx, constants.RequestTimeout)
Expand Down

0 comments on commit 9be9a31

Please sign in to comment.