Skip to content
This repository has been archived by the owner on Nov 17, 2022. It is now read-only.

Commit

Permalink
refactor: Rm body parser from proxy
Browse files Browse the repository at this point in the history
The body parser was manipulating the request in transit which caused
POST reqests with json to hang and never reach the server

See this issue in http-proxy-middleware's github:
chimurai/http-proxy-middleware#40
  • Loading branch information
tkottke90 committed Mar 7, 2020
1 parent bc900dd commit bceb771
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/proxy/src/classes/application.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export default class Application {

constructor() {
this.express = express();
this.express.use(express.json());

this.logger = logger;
this.environment = environment;
Expand Down

0 comments on commit bceb771

Please sign in to comment.