Skip to content

Commit

Permalink
change busboy implementation. Fixes #287
Browse files Browse the repository at this point in the history
  • Loading branch information
icebob committed Jan 9, 2022
1 parent 7328218 commit 8703809
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/alias.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"use strict";

const pathToRegexp = require("path-to-regexp");
const Busboy = require("busboy");
const Busboy = require("@fastify/busboy");
const kleur = require("kleur");
const _ = require("lodash");

Expand Down
2 changes: 1 addition & 1 deletion test/integration/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const ApiGateway = require("../../index");
const { ServiceBroker, Context } = require("moleculer");
const { MoleculerError } = require("moleculer").Errors;
const { UnAuthorizedError, ERR_NO_TOKEN } = ApiGateway.Errors;
const Busboy = require("busboy");
const Busboy = require("@fastify/busboy");
const Alias = require("../../src/alias");

/*
Expand Down

0 comments on commit 8703809

Please sign in to comment.