Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
david-luna committed Nov 2, 2023
1 parent 1872b8a commit db11958
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export class MongoDBInstrumentation extends InstrumentationBase {
private _getV4ConnectionPoolCheckOut() {
return (original: V4ConnectionPool['checkOut']) => {
return function patchedCheckout(this: unknown, callback: any) {
const patchedCallback = context.bind(context.active(), callback)
const patchedCallback = context.bind(context.active(), callback);
return original.call(this, patchedCallback);
};
};
Expand Down

0 comments on commit db11958

Please sign in to comment.