Skip to content

Commit

Permalink
pkg/context: Transfer external dependency context
Browse files Browse the repository at this point in the history
  • Loading branch information
monstermunchkin committed Aug 30, 2024
1 parent fe6659e commit 3503b4c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/context/transfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ func Transfer(in context.Context) context.Context {
out = utm.ContextTransfer(in, out)
out = hlog.ContextTransfer(in, out)
out = TransferTracingContext(in, out)
return locale.ContextTransfer(in, out)
out = locale.ContextTransfer(in, out)
out = TransferExternalDependencyContext(in, out)

return out
}

func TransferTracingContext(in, out context.Context) context.Context {
Expand Down

0 comments on commit 3503b4c

Please sign in to comment.