Skip to content

Commit

Permalink
fix(instrumentation-fastify): stop using fastify types in public api (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dotboris authored Nov 3, 2022
1 parent ae76570 commit 40515c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export class FastifyInstrumentation extends InstrumentationBase {
return fastify;
}

public _patchSend() {
private _patchSend() {
const instrumentation = this;
this._diag.debug('Patching fastify reply.send function');

Expand Down Expand Up @@ -238,7 +238,7 @@ export class FastifyInstrumentation extends InstrumentationBase {
};
}

public _hookPreHandler() {
private _hookPreHandler() {
const instrumentation = this;
this._diag.debug('Patching fastify preHandler function');

Expand Down

0 comments on commit 40515c3

Please sign in to comment.