refactor(app.js): Extract tooBusy

This commit is contained in:
BoHong Li 2017-04-12 06:05:43 +08:00 committed by Raccoon Li
parent 768943002c
commit 7ef17fd4e6
2 changed files with 15 additions and 8 deletions

View file

@ -0,0 +1,13 @@
'use strict'
const toobusy = require('toobusy-js')
const response = require('../../response')
module.exports = function (req, res, next) {
if (toobusy()) {
response.errorServiceUnavailable(res)
} else {
next()
}
}