hedgedoc/lib/web/middleware/tooBusy.js
David Mehren f78540c3fb
Move note actions to their own file.
Because of circular import problems, this commit also moves the error messages from response.js to errors.js

Signed-off-by: David Mehren <dmehren1@gmail.com>
2019-10-27 13:51:53 +01:00

16 lines
299 B
JavaScript

'use strict'
const toobusy = require('toobusy-js')
const errors = require('../../errors')
const config = require('../../config')
toobusy.maxLag(config.tooBusyLag)
module.exports = function (req, res, next) {
if (toobusy()) {
errors.errorServiceUnavailable(res)
} else {
next()
}
}