Skip to content

Commit

Permalink
chore: fixed propagating transaction/segment context
Browse files Browse the repository at this point in the history
  • Loading branch information
bizob2828 committed Oct 16, 2024
1 parent 73d56e7 commit 55a7812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/transaction/tracer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function getSegment() {
function setSegment(args) {
const ctx = this.getContext()

const newContext = { ...args, ...ctx }
const newContext = { ...ctx, ...args }
this._contextManager.setContext(newContext)
}

Expand Down

0 comments on commit 55a7812

Please sign in to comment.