Skip to content

Commit

Permalink
Fix wrapping traceJob in fiber
Browse files Browse the repository at this point in the history
  • Loading branch information
zodern committed Dec 11, 2024
1 parent fd8e290 commit 7823fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kadira.js
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ Kadira.traceJob = function (details, processor) {

if (!Fibers.current) {
return Fibers(function () {
return Kadira.traceJob();
return Kadira.traceJob(details, processor);
}).run();
}

Expand Down

0 comments on commit 7823fe0

Please sign in to comment.