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>
		
			
				
	
	
		
			17 lines
		
	
	
		
			299 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 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()
 | 
						|
  }
 | 
						|
}
 |