Commit e1034b74fbb14334d4e2cf3d4cc4f6390d242369
1 parent
f3bfaa4bb8
Exists in
master
and in
1 other branch
Remove duplicate middlewares
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
lib/partner-listener/index.js
... | ... | @@ -18,7 +18,7 @@ app.use(express.json({ extended: true })); |
18 | 18 | app.use(express.urlencoded({ extended: true })); |
19 | 19 | app.use(middlewareCommon); |
20 | 20 | |
21 | -app.use('/ping', express.urlencoded(), express.json(), (req, res) => { | |
21 | +app.use('/ping', (req, res) => { | |
22 | 22 | res.json({ |
23 | 23 | error: false, |
24 | 24 | xid: res.locals.xid, |