Authored by htoooth

fix

... ... @@ -124,7 +124,7 @@ module.exports = (req, res, next) => {
}
});
if (duration > config.slowRoute.min || duration < config.slowRoute.max) {
if (duration > config.slowRoute.min && duration < config.slowRoute.max) {
slowRouterSender.addMessage(msg2row.slowRouter(data));
}
}
... ...