Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
xiehuc committed Nov 16, 2023
1 parent 960afe9 commit 0746142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion propagation/trace_context.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (tc TraceContext) Inject(ctx context.Context, carrier TextMapCarrier) {

func writeTraceParent(sb *strings.Builder, srcs ...[]byte) {
for _, src := range srcs {
_, _ = sb.WriteByte(parentDelimiter[0])
_ = sb.WriteByte(parentDelimiter[0])
writeHex(sb, src)
}
}
Expand Down

0 comments on commit 0746142

Please sign in to comment.